Alerting: Fix display of quotes in expression component (#94807)

This commit is contained in:
Tom Ratcliffe 2024-10-16 14:12:35 +01:00 committed by GitHub
parent 9f78fd94d7
commit dfe2d5eb98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -361,7 +361,8 @@ interface FrameProps extends Pick<ExpressionProps, 'isAlertCondition'> {
const OpeningBracket = () => <span>{'{'}</span>;
const ClosingBracket = () => <span>{'}'}</span>;
const Quote = () => <span>{'&quot;'}</span>;
// eslint-disable-next-line @grafana/no-untranslated-strings
const Quote = () => <span>&quot;</span>;
const Equals = () => <span>{'='}</span>;
const FrameRow: FC<FrameProps> = ({ frame, index, isAlertCondition }) => {