Fix edit task repeat after being undefined (again)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-06-25 21:11:30 +02:00
parent 81cc2c17e6
commit efc047ced7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,9 @@
watch: {
value(newVal) {
this.task = newVal
this.repeatAfter = newVal.repeatAfter
if (typeof newVal.repeatAfter !== 'undefined') {
this.repeatAfter = newVal.repeatAfter
}
},
},
mounted() {