mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
fix: Context menu crashing when there is no dimension in Echarts Series charts (#23797)
This commit is contained in:
committed by
GitHub
parent
6ae5388dcf
commit
d4c0ae34f4
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user