mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
graph legend: fix quotes displaying
React already escapes all strings, so it's no need to pass escaped alias
This commit is contained in:
parent
36354856f9
commit
011d7ffa70
@ -93,7 +93,7 @@ export class LegendItem extends React.PureComponent<LegendItemProps, LegendItemS
|
||||
const valueItems = values ? this.renderLegendValues() : [];
|
||||
const seriesLabel = (
|
||||
<LegendSeriesLabel
|
||||
label={series.aliasEscaped}
|
||||
label={series.alias}
|
||||
color={series.color}
|
||||
yaxis={this.state.yaxis}
|
||||
onLabelClick={this.onLabelClick}
|
||||
|
Loading…
Reference in New Issue
Block a user