From ece0c121a528a5dd0d5615c10158c3e2b0ee0757 Mon Sep 17 00:00:00 2001 From: Sven Grossmann Date: Fri, 6 Jan 2023 11:15:12 +0100 Subject: [PATCH] Logs: Fix line not being selectable in Firefox (#61081) fix log line not being selectable --- public/app/features/logs/components/LogRowMessage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/logs/components/LogRowMessage.tsx b/public/app/features/logs/components/LogRowMessage.tsx index d00382d2123..37dffc7228b 100644 --- a/public/app/features/logs/components/LogRowMessage.tsx +++ b/public/app/features/logs/components/LogRowMessage.tsx @@ -86,6 +86,7 @@ const getStyles = (theme: GrafanaTheme2, showContextButton: boolean, isInDashboa letter-spacing: ${theme.typography.bodySmall.letterSpacing}; text-align: left; padding: 0; + user-select: text; `, }; };