From 83ea50bb26eb9882c8fe71ddecd85eae2c070ac7 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 9 May 2023 20:36:50 +0200 Subject: [PATCH] change drawer truncated for long title --- .../lib/components/common/drawer/DrawerContent.svelte | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/src/lib/components/common/drawer/DrawerContent.svelte b/frontend/src/lib/components/common/drawer/DrawerContent.svelte index e22737edd7..dc262dddbe 100644 --- a/frontend/src/lib/components/common/drawer/DrawerContent.svelte +++ b/frontend/src/lib/components/common/drawer/DrawerContent.svelte @@ -9,18 +9,19 @@ export let forceOverflowVisible = false export let tooltip: string = '' export let documentationLink: string | undefined = undefined -
-
-
+
+
- {title ?? ''} + {title ?? ''} {#if tooltip != '' || documentationLink} {tooltip} - {/if} + {/if}
{#if $$slots.actions}