Fix edit task repeat after being undefined (again)
This commit is contained in:
@ -59,7 +59,9 @@
|
|||||||
watch: {
|
watch: {
|
||||||
value(newVal) {
|
value(newVal) {
|
||||||
this.task = newVal
|
this.task = newVal
|
||||||
this.repeatAfter = newVal.repeatAfter
|
if (typeof newVal.repeatAfter !== 'undefined') {
|
||||||
|
this.repeatAfter = newVal.repeatAfter
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
Reference in New Issue
Block a user