From cd31d50cb27fbdeb70545b54bf19cae5920d756e Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Tue, 25 Feb 2025 20:11:30 +0100 Subject: [PATCH] Lib: Fix double semicolon in LazyImage --- src/lib/components/LazyImage.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/LazyImage.svelte b/src/lib/components/LazyImage.svelte index 18659c3..678d528 100644 --- a/src/lib/components/LazyImage.svelte +++ b/src/lib/components/LazyImage.svelte @@ -56,8 +56,8 @@ use:lazyload onLazyVisible={lazy_visible_handler} class="overflow-hidden" - style="aspect-ratio: {imgwidth} / {imgheight}; {containerstyle ?? - ''}; max-width: {imgwidth}px; max-height: {imgheight}px" + style="aspect-ratio: {imgwidth} / {imgheight}; max-width: {imgwidth}px; max-height: {imgheight}px; {containerstyle ?? + ''}" > {#if load} {#await fetch_image_base64(src) then data}