mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 17:39:03 +08:00
fix: while saving the widget, queryData(response of the query) is not send over the backend as it is always calc over the frontend (#323)
This commit is contained in:
parent
2c1c0ceea6
commit
050da9a2a9
@ -73,6 +73,15 @@ export const SaveDashboard = ({
|
|||||||
opacity: updatedopacity,
|
opacity: updatedopacity,
|
||||||
title: updatedTitle,
|
title: updatedTitle,
|
||||||
timePreferance: updatedtimePreferance,
|
timePreferance: updatedtimePreferance,
|
||||||
|
queryData: {
|
||||||
|
...selectedWidget.queryData,
|
||||||
|
data: [
|
||||||
|
...selectedWidget.queryData.data.map((e) => ({
|
||||||
|
...e,
|
||||||
|
queryData: [],
|
||||||
|
})),
|
||||||
|
],
|
||||||
|
},
|
||||||
},
|
},
|
||||||
...afterWidget,
|
...afterWidget,
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user