Fix edit task repeat after being undefined (again)
This commit is contained in:
parent
81cc2c17e6
commit
efc047ced7
1 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,9 @@
|
|||
watch: {
|
||||
value(newVal) {
|
||||
this.task = newVal
|
||||
this.repeatAfter = newVal.repeatAfter
|
||||
if (typeof newVal.repeatAfter !== 'undefined') {
|
||||
this.repeatAfter = newVal.repeatAfter
|
||||
}
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
|
|
Loading…
Reference in a new issue