ui: fix data parser for heatmap

This commit is contained in:
nick-delirium 2025-02-18 15:19:41 +01:00
parent 00a834b143
commit e996600dc8
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
2 changed files with 1 additions and 1 deletions

View file

@ -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);
}, []);

View file

@ -314,6 +314,7 @@ export default class Widget {
}
if (this.metricType === HEATMAP) {
Object.assign(this.data, data);
return;
}