From 89323414454a0a51a6255fb2155dba50f1a1ab31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Tue, 2 Apr 2024 16:49:04 +0200 Subject: [PATCH] fix(webui): action buttons no longer hidden on entries with long labels --- webui/src/lib/components/widgets/EntityList.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/src/lib/components/widgets/EntityList.svelte b/webui/src/lib/components/widgets/EntityList.svelte index 2526980..c89995e 100644 --- a/webui/src/lib/components/widgets/EntityList.svelte +++ b/webui/src/lib/components/widgets/EntityList.svelte @@ -262,7 +262,9 @@ .item { display: flex; .object { - width: 100%; + flex-grow: 1; + max-width: 100%; + min-width: 0; } .icon {