From d735fae492057b482e50bca6cf358a74b892b061 Mon Sep 17 00:00:00 2001 From: David Harris Date: Thu, 2 May 2024 16:45:16 +0100 Subject: [PATCH] wip: attempt to fix overflow --- public/app/features/plugins/admin/components/PluginListItem.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/features/plugins/admin/components/PluginListItem.tsx b/public/app/features/plugins/admin/components/PluginListItem.tsx index 584656809c0..d86cfb4955a 100644 --- a/public/app/features/plugins/admin/components/PluginListItem.tsx +++ b/public/app/features/plugins/admin/components/PluginListItem.tsx @@ -151,6 +151,8 @@ export const getStyles = (theme: GrafanaTheme2) => { fontSize: theme.typography.h4.fontSize, color: theme.colors.text.primary, margin: 0, + wordBreak: 'normal', + overflowWrap: 'anywhere' }), }; };