mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
TimeSeries: guard against pointSize being set < lineWidth (#41577)
This commit is contained in:
parent
4281c5afc1
commit
7a92faf398
@ -109,7 +109,7 @@ export class UPlotSeriesBuilder extends PlotConfigBuilder<SeriesProps, Series> {
|
||||
points: {
|
||||
stroke: useColor,
|
||||
fill: useColor,
|
||||
size: pointSize,
|
||||
size: !pointSize || pointSize < lineWidth! ? undefined : pointSize,
|
||||
filter: pointsFilter,
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user