mirror of
https://github.com/immich-app/immich.git
synced 2025-11-28 13:59:45 +09:00
chore(deps): update web (#2806)
* chore(deps): update web * fixed svelte-check being a nuisance --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
@@ -77,23 +77,23 @@
|
||||
text: 'All'
|
||||
},
|
||||
{
|
||||
value: Duration.fromObject({ hours: 24 }).toISO(),
|
||||
value: Duration.fromObject({ hours: 24 }).toISO() || '',
|
||||
text: 'Past 24 hours'
|
||||
},
|
||||
{
|
||||
value: Duration.fromObject({ days: 7 }).toISO(),
|
||||
value: Duration.fromObject({ days: 7 }).toISO() || '',
|
||||
text: 'Past 7 days'
|
||||
},
|
||||
{
|
||||
value: Duration.fromObject({ days: 30 }).toISO(),
|
||||
value: Duration.fromObject({ days: 30 }).toISO() || '',
|
||||
text: 'Past 30 days'
|
||||
},
|
||||
{
|
||||
value: Duration.fromObject({ years: 1 }).toISO(),
|
||||
value: Duration.fromObject({ years: 1 }).toISO() || '',
|
||||
text: 'Past year'
|
||||
},
|
||||
{
|
||||
value: Duration.fromObject({ years: 3 }).toISO(),
|
||||
value: Duration.fromObject({ years: 3 }).toISO() || '',
|
||||
text: 'Past 3 years'
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user