fix: properly parse dates or null

Resolves vikunja/frontend#2214
This commit is contained in:
kolaente 2022-08-02 15:19:51 +02:00
parent 31480eae72
commit e82a83c8cf
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -6,8 +6,9 @@ export function parseDateOrNull(date) {
return date
}
if (date && !date.startsWith('0001')) {
if ((typeof date === 'string' || date instanceof String) && !date.startsWith('0001')) {
return new Date(date)
}
return null
}