ui: fix data parser for heatmap
This commit is contained in:
parent
00a834b143
commit
e996600dc8
2 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,6 @@ function ClickMapCard() {
|
|||
const url = metricStore.instance.data.path;
|
||||
const operator = metricStore.instance.series[0]?.filter.filters[0]?.operator ? metricStore.instance.series[0].filter.filters[0].operator : 'startsWith'
|
||||
|
||||
|
||||
React.useEffect(() => {
|
||||
return () => setCustomSession(null);
|
||||
}, []);
|
||||
|
|
|
|||
|
|
@ -314,6 +314,7 @@ export default class Widget {
|
|||
}
|
||||
|
||||
if (this.metricType === HEATMAP) {
|
||||
Object.assign(this.data, data);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue