Better reminders #308

Merged
konrad merged 37 commits from feature/better-reminders into master 2020-11-28 13:59:28 +00:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 1d3a407318 - Show all commits

View File

@ -162,6 +162,10 @@ export default {
},
watch: {
value(newVal) {
if(newVal === null) {
this.date = null
return
}
this.date = new Date(newVal)
},
flatPickrDate(newVal) {