mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
- fix icon
- update openapi-specs
This commit is contained in:
parent
e2b5b30e30
commit
9f93c89878
2 changed files with 5 additions and 3 deletions
|
|
@ -1052,7 +1052,9 @@
|
|||
],
|
||||
"tags": [
|
||||
"Albums"
|
||||
]
|
||||
],
|
||||
"x-immich-permission": "album.read",
|
||||
"description": "This endpoint requires the `album.read` permission."
|
||||
}
|
||||
},
|
||||
"/albums/statistics": {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
<script lang="ts">
|
||||
import Icon from '$lib/components/elements/icon.svelte';
|
||||
import Combobox, { type ComboBoxOption } from '$lib/components/shared-components/combobox.svelte';
|
||||
import { getAssetThumbnailUrl } from '$lib/utils';
|
||||
import { getAllAlbumsSlim, type AlbumResponseDto } from '@immich/sdk';
|
||||
import { Icon } from '@immich/ui';
|
||||
import { mdiClose } from '@mdi/js';
|
||||
import { onMount } from 'svelte';
|
||||
import { t } from 'svelte-i18n';
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
title={$t('remove_album')}
|
||||
onclick={() => handleRemove(albumId)}
|
||||
>
|
||||
<Icon path={mdiClose} />
|
||||
<Icon icon={mdiClose} />
|
||||
</button>
|
||||
</div>
|
||||
{/if}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue