Skip to content

Commit

Permalink
fix: Context menu crashing when there is no dimension in Echarts Seri…
Browse files Browse the repository at this point in the history
…es charts (#23797)
  • Loading branch information
kgabryje committed Apr 24, 2023
1 parent 6ae5388 commit d4c0ae3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default function EchartsTimeseries({
const pointerEvent = eventParams.event.event;
const values = [
...(eventParams.name ? [eventParams.name] : []),
...labelMap[seriesName],
...(labelMap[seriesName] ?? []),
];
if (data && xAxis.type === AxisType.time) {
drillToDetailFilters.push({
Expand Down

0 comments on commit d4c0ae3

Please sign in to comment.