mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
639bc0c660
* fix(web): broken album thumbnail * use properties from thumbnail
23 lines
731 B
Svelte
23 lines
731 B
Svelte
<script lang="ts">
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { mdiImageBrokenVariant } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
let className = '';
|
|
export { className as class };
|
|
export let hideMessage = false;
|
|
export let width: string | undefined = undefined;
|
|
export let height: string | undefined = undefined;
|
|
</script>
|
|
|
|
<div
|
|
class="flex flex-col overflow-hidden max-h-full max-w-full justify-center items-center bg-gray-100 dark:bg-gray-700 dark:text-gray-100 p-4 {className}"
|
|
style:width
|
|
style:height
|
|
>
|
|
<Icon path={mdiImageBrokenVariant} size="7em" class="max-w-full" />
|
|
{#if !hideMessage}
|
|
<span class="text-center">{$t('error_loading_image')}</span>
|
|
{/if}
|
|
</div>
|