From b4c368e72c11ff7bf3e384263344c842e2dfcb70 Mon Sep 17 00:00:00 2001 From: Ihor Yeromin Date: Wed, 22 May 2024 16:20:40 +0200 Subject: [PATCH] Canvas: Fix emotion style property error (#88162) fix(canvas): emotion style property error --- public/app/plugins/panel/canvas/globalStyles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/plugins/panel/canvas/globalStyles.ts b/public/app/plugins/panel/canvas/globalStyles.ts index a282d9d59d9..dca18e3837c 100644 --- a/public/app/plugins/panel/canvas/globalStyles.ts +++ b/public/app/plugins/panel/canvas/globalStyles.ts @@ -45,7 +45,7 @@ export function getGlobalStyles(theme: GrafanaTheme2) { bottom: 0, left: 0, boxShadow: 'inset 0 0 0 2px blue', - content: '', + content: '""', }, '& ~ .rc-tree-treenode': { borderLeft: `2px solid ${theme.components.input.borderColor}`, @@ -167,7 +167,7 @@ export function getGlobalStyles(theme: GrafanaTheme2) { borderLeft: 0, WebkitTransform: 'scale(1)', transform: 'scale(1)', - content: ' ', + content: '" "', }, }, },