mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Alerting: Fix display of quotes in expression component (#94807)
This commit is contained in:
parent
9f78fd94d7
commit
dfe2d5eb98
@ -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 }) => {
|
||||
|
Loading…
Reference in New Issue
Block a user