1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-04 02:46:47 +01: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:
renovate[bot] 2023-06-16 12:45:05 -05:00 committed by GitHub
parent 5387048dc3
commit 5d7d615433
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 2928 additions and 2610 deletions

View file

@ -1,5 +1,5 @@
# Our Node base image # Our Node base image
FROM node:18.16.0-alpine3.18@sha256:f41850f74ff16a33daff988e2ea06ef8f5daeb6fb84913c7df09552a98caba09 as base FROM node:18.16.0-alpine3.18@sha256:9036ddb8252ba7089c2c83eb2b0dcaf74ff1069e8ddf86fe2bd6dc5fecc9492d as base
WORKDIR /usr/src/app WORKDIR /usr/src/app
EXPOSE 3000 EXPOSE 3000

5518
web/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -69,7 +69,7 @@
"luxon": "^3.2.1", "luxon": "^3.2.1",
"rxjs": "^7.8.0", "rxjs": "^7.8.0",
"socket.io-client": "^4.6.1", "socket.io-client": "^4.6.1",
"svelte-local-storage-store": "^0.4.0", "svelte-local-storage-store": "^0.5.0",
"svelte-material-icons": "^3.0.4" "svelte-material-icons": "^3.0.4"
} }
} }

View file

@ -77,23 +77,23 @@
text: 'All' text: 'All'
}, },
{ {
value: Duration.fromObject({ hours: 24 }).toISO(), value: Duration.fromObject({ hours: 24 }).toISO() || '',
text: 'Past 24 hours' text: 'Past 24 hours'
}, },
{ {
value: Duration.fromObject({ days: 7 }).toISO(), value: Duration.fromObject({ days: 7 }).toISO() || '',
text: 'Past 7 days' text: 'Past 7 days'
}, },
{ {
value: Duration.fromObject({ days: 30 }).toISO(), value: Duration.fromObject({ days: 30 }).toISO() || '',
text: 'Past 30 days' text: 'Past 30 days'
}, },
{ {
value: Duration.fromObject({ years: 1 }).toISO(), value: Duration.fromObject({ years: 1 }).toISO() || '',
text: 'Past year' text: 'Past year'
}, },
{ {
value: Duration.fromObject({ years: 3 }).toISO(), value: Duration.fromObject({ years: 3 }).toISO() || '',
text: 'Past 3 years' text: 'Past 3 years'
} }
]} ]}

View file

@ -74,7 +74,7 @@
onMount(async () => { onMount(async () => {
if (!$memoryStore) { if (!$memoryStore) {
const { data } = await api.assetApi.getMemoryLane({ const { data } = await api.assetApi.getMemoryLane({
timestamp: DateTime.local().startOf('day').toISO() timestamp: DateTime.local().startOf('day').toISO() || ''
}); });
$memoryStore = data; $memoryStore = data;
} }

View file

@ -12,7 +12,7 @@
onMount(async () => { onMount(async () => {
const { data } = await api.assetApi.getMemoryLane({ const { data } = await api.assetApi.getMemoryLane({
timestamp: DateTime.local().startOf('day').toISO() timestamp: DateTime.local().startOf('day').toISO() || ''
}); });
$memoryStore = data; $memoryStore = data;
}); });

View file

@ -50,7 +50,7 @@
const { data } = await api.assetApi.getMapMarkers( const { data } = await api.assetApi.getMapMarkers(
{ {
isFavorite: onlyFavorites || undefined, isFavorite: onlyFavorites || undefined,
fileCreatedAfter, fileCreatedAfter: fileCreatedAfter || undefined,
fileCreatedBefore fileCreatedBefore
}, },
{ {