1
0

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:
konrad
2020-06-27 17:04:30 +00:00
parent d586e15c56
commit cd588caa02
5 changed files with 32 additions and 31 deletions

View File

@ -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()