Fix Datetime Handling (#168)
Fix task filters Fix null dates Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/168
This commit is contained in:
@ -78,8 +78,8 @@
|
||||
this.wunderlistCode = this.$route.query.code
|
||||
this.migrationService.getStatus()
|
||||
.then(r => {
|
||||
if(r.time_unix) {
|
||||
this.lastMigrationDate = new Date(r.time_unix)
|
||||
if(r.time) {
|
||||
this.lastMigrationDate = new Date(r.time)
|
||||
return
|
||||
}
|
||||
this.migrate()
|
||||
|
Reference in New Issue
Block a user