fix: editor shows saving if the query is duplicated and doesn't go away (#10460)

This commit is contained in:
Kiran Ashok 2024-07-30 11:21:09 +05:30 committed by GitHub
parent 92d3d7826d
commit d5ff86c427
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -462,6 +462,9 @@ export const useDataQueriesStore = create(
useAppDataStore.getState().actions?.createAppVersionEventHandlers(newEvent);
})
);
})
.finally(() => {
useAppDataStore.getState().actions.setIsSaving(false);
});
},