diff --git a/mobile/openapi/doc/AssetApi.md b/mobile/openapi/doc/AssetApi.md index 3d12d41d82..fd1338532b 100644 Binary files a/mobile/openapi/doc/AssetApi.md and b/mobile/openapi/doc/AssetApi.md differ diff --git a/server/immich-openapi-specs.json b/server/immich-openapi-specs.json index 788c8258e4..bae89bdb81 100644 --- a/server/immich-openapi-specs.json +++ b/server/immich-openapi-specs.json @@ -2655,6 +2655,9 @@ }, { "cookie": [] + }, + { + "api_key": [] } ] } diff --git a/web/src/api/open-api/api.ts b/web/src/api/open-api/api.ts index 0daea79b83..2f89c25fb3 100644 --- a/web/src/api/open-api/api.ts +++ b/web/src/api/open-api/api.ts @@ -4817,6 +4817,9 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration // authentication cookie required + // authentication api_key required + await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) + // authentication bearer required // http bearer authentication required await setBearerAuthToObject(localVarHeaderParameter, configuration) diff --git a/web/src/lib/components/photos-page/asset-date-group.svelte b/web/src/lib/components/photos-page/asset-date-group.svelte index 065732c096..3b000d6a28 100644 --- a/web/src/lib/components/photos-page/asset-date-group.svelte +++ b/web/src/lib/components/photos-page/asset-date-group.svelte @@ -108,17 +108,12 @@ // Show multi select icon on hover on date group hoveredDateGroup = dateGroupTitle; }; - - let clientWidth = 0; - -
{#each assetsGroupByDate as assetsInDateGroup, groupIndex (assetsInDateGroup[0].id)} {@const dateGroupTitle = new Date(assetsInDateGroup[0].fileCreatedAt).toLocaleDateString( @@ -165,8 +160,6 @@ {#each assetsInDateGroup as asset (asset.id)}
assetClickHandler(asset, assetsInDateGroup, dateGroupTitle)}