mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-11 17:59:09 +08:00
fix: save unit on dashboard without hitting apply (#912)
This commit is contained in:
parent
78b1a750fa
commit
ca78947a55
@ -18,6 +18,7 @@ export const SaveDashboard = ({
|
||||
title,
|
||||
widgetId,
|
||||
dashboardId,
|
||||
yAxisUnit,
|
||||
}: SaveDashboardProps): ((dispatch: Dispatch<AppActions>) => void) => {
|
||||
return async (dispatch: Dispatch<AppActions>): Promise<void> => {
|
||||
try {
|
||||
@ -39,6 +40,7 @@ export const SaveDashboard = ({
|
||||
const updatednullZeroValues = nullZeroValues;
|
||||
const updatedopacity = opacity;
|
||||
const updatedtimePreferance = timePreferance;
|
||||
const updatedYAxisUnit = yAxisUnit;
|
||||
|
||||
const selectedWidgetIndex = data.widgets?.findIndex(
|
||||
(e) => e.id === widgetId,
|
||||
@ -74,6 +76,7 @@ export const SaveDashboard = ({
|
||||
opacity: updatedopacity,
|
||||
title: updatedTitle,
|
||||
timePreferance: updatedtimePreferance,
|
||||
yAxisUnit: updatedYAxisUnit,
|
||||
queryData: {
|
||||
...selectedWidget.queryData,
|
||||
data: [
|
||||
|
@ -357,6 +357,7 @@ const dashboard = (
|
||||
|
||||
case SAVE_SETTING_TO_PANEL_SUCCESS: {
|
||||
const selectedDashboard = action.payload;
|
||||
|
||||
return {
|
||||
...state,
|
||||
dashboards: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user