From dfe2d5eb98ec8a4700248a6d997628865a63ae0b Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Wed, 16 Oct 2024 14:12:35 +0100 Subject: [PATCH] Alerting: Fix display of quotes in expression component (#94807) --- .../alerting/unified/components/expressions/Expression.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/components/expressions/Expression.tsx b/public/app/features/alerting/unified/components/expressions/Expression.tsx index 863ca7bd9db..f4f57d1859a 100644 --- a/public/app/features/alerting/unified/components/expressions/Expression.tsx +++ b/public/app/features/alerting/unified/components/expressions/Expression.tsx @@ -361,7 +361,8 @@ interface FrameProps extends Pick { const OpeningBracket = () => {'{'}; const ClosingBracket = () => {'}'}; -const Quote = () => {'"'}; +// eslint-disable-next-line @grafana/no-untranslated-strings +const Quote = () => "; const Equals = () => {'='}; const FrameRow: FC = ({ frame, index, isAlertCondition }) => {