From de2c01a8486b9ee9cd2f5e8a898de949d0381630 Mon Sep 17 00:00:00 2001 From: Eric P Green Date: Fri, 8 Sep 2023 14:18:44 -0400 Subject: [PATCH] Don't truncate dashboard titles --- web-admin/src/components/projects/DashboardList.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web-admin/src/components/projects/DashboardList.svelte b/web-admin/src/components/projects/DashboardList.svelte index 67264bad7c9..a2aa69daa0e 100644 --- a/web-admin/src/components/projects/DashboardList.svelte +++ b/web-admin/src/components/projects/DashboardList.svelte @@ -44,7 +44,7 @@ href={dashboardListItem.isValid ? `/${organization}/${project}/${dashboardListItem.name}` : undefined} - class="w-full h-full p-3 flex items-center gap-x-6 {dashboardListItem.isValid + class="w-full h-full overflow-x-auto p-3 flex items-center gap-x-6 {dashboardListItem.isValid ? 'text-gray-700 hover:text-blue-600 hover:bg-slate-50' : 'text-gray-400'}" > @@ -55,10 +55,10 @@ -
+
{dashboardListItem?.title || dashboardListItem.name}