Add tags as folders display mode

This commit is contained in:
Cohee
2023-11-10 21:56:25 +02:00
parent abe4bb6d54
commit cb1e254cb9
8 changed files with 219 additions and 62 deletions

View File

@ -550,7 +550,7 @@ export function timestampToMoment(timestamp) {
return moment.invalid();
}
// Unix time (legacy TAI)
// Unix time (legacy TAI / tags)
if (typeof timestamp === 'number') {
return moment(timestamp);
}