fix(web+server): showing assets without thumbnail (#2652)

* fix(web+server): showing assets without thumbnail

* missed change
This commit is contained in:
Michel Heusschen
2023-06-04 04:41:27 +02:00
committed by GitHub
parent b8de668f5f
commit cab5477656
16 changed files with 143 additions and 47 deletions

View File

@@ -26,7 +26,10 @@
onMount(async () => {
try {
const { data: assets } = await api.assetApi.getAllAssets({ isArchived: true });
const { data: assets } = await api.assetApi.getAllAssets({
isArchived: true,
withoutThumbs: true
});
$archivedAsset = assets;
} catch {
handleError(Error, 'Unable to load archived assets');