From c6387854c58d95c3c34df573c3c4d9dfb74163d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Tue, 8 Oct 2024 15:09:06 +0200 Subject: [PATCH] TraceView: Fix icon background after making a copy of an attribute (#94402) Fix icon color after making a copy --- .../features/explore/TraceView/components/common/CopyIcon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/TraceView/components/common/CopyIcon.tsx b/public/app/features/explore/TraceView/components/common/CopyIcon.tsx index 95bfdf9ed90..aa3e05dc04a 100644 --- a/public/app/features/explore/TraceView/components/common/CopyIcon.tsx +++ b/public/app/features/explore/TraceView/components/common/CopyIcon.tsx @@ -26,7 +26,7 @@ const getStyles = () => ({ height: '100%', overflow: 'hidden', '&:focus': { - backgroundCcolor: 'rgba(255, 255, 255, 0.25)', + backgroundColor: 'rgba(255, 255, 255, 0.25)', color: 'inherit', }, }),