mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-25 00:34:26 +08:00
fix: dashboard context is updated when we update (#3718)
This commit is contained in:
parent
a912731cc7
commit
ca3283fcad
@ -27,7 +27,12 @@ function GraphLayout({
|
||||
onAddPanelHandler,
|
||||
widgets,
|
||||
}: GraphLayoutProps): JSX.Element {
|
||||
const { selectedDashboard, layouts, setLayouts } = useDashboard();
|
||||
const {
|
||||
selectedDashboard,
|
||||
layouts,
|
||||
setLayouts,
|
||||
setSelectedDashboard,
|
||||
} = useDashboard();
|
||||
const { t } = useTranslation(['dashboard']);
|
||||
|
||||
const { featureResponse, role } = useSelector<AppState, AppReducer>(
|
||||
@ -58,12 +63,17 @@ function GraphLayout({
|
||||
};
|
||||
|
||||
updateDashboardMutation.mutate(updatedDashboard, {
|
||||
onSuccess: () => {
|
||||
featureResponse.refetch();
|
||||
|
||||
onSuccess: (updatedDashboard) => {
|
||||
if (updatedDashboard.payload) {
|
||||
if (updatedDashboard.payload.data.layout)
|
||||
setLayouts(updatedDashboard.payload.data.layout);
|
||||
setSelectedDashboard(updatedDashboard.payload);
|
||||
}
|
||||
notifications.success({
|
||||
message: t('dashboard:layout_saved_successfully'),
|
||||
});
|
||||
|
||||
featureResponse.refetch();
|
||||
},
|
||||
onError: () => {
|
||||
notifications.error({
|
||||
|
Loading…
x
Reference in New Issue
Block a user