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