Alerting: Fix display of quotes in expression component (#94807)
This commit is contained in:
@@ -361,7 +361,8 @@ interface FrameProps extends Pick<ExpressionProps, 'isAlertCondition'> {
|
||||
|
||||
const OpeningBracket = () => <span>{'{'}</span>;
|
||||
const ClosingBracket = () => <span>{'}'}</span>;
|
||||
const Quote = () => <span>{'"'}</span>;
|
||||
// eslint-disable-next-line @grafana/no-untranslated-strings
|
||||
const Quote = () => <span>"</span>;
|
||||
const Equals = () => <span>{'='}</span>;
|
||||
|
||||
const FrameRow: FC<FrameProps> = ({ frame, index, isAlertCondition }) => {
|
||||
|
||||
Reference in New Issue
Block a user