fix(web): logo invisible on share page (#7990)

This commit is contained in:
Michel Heusschen 2024-03-15 20:53:58 +01:00 committed by GitHub
parent abedfd1015
commit e21c586cc5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 5 deletions

View file

@ -4,6 +4,13 @@
import logoNoText from '$lib/assets/immich-logo.svg';
import { Theme } from '$lib/constants';
import { colorTheme } from '$lib/stores/preferences.store';
import type { HTMLImgAttributes } from 'svelte/elements';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
interface $$Props extends HTMLImgAttributes {
noText?: boolean;
draggable?: boolean;
}
export let noText = false;
export let draggable = false;