1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

ensure error is thrown on client validation failure

This commit is contained in:
Martin McKeaveney 2021-02-23 10:41:11 +00:00
parent 8d500584b2
commit cdad198103

View file

@ -135,6 +135,9 @@ export const getBackendUiStore = () => {
}
query.datasourceId = datasourceId
const response = await api.post(`/api/queries`, query)
if (response.status !== 200) {
throw new Error("Failed saving query.")
}
const json = await response.json()
store.update(state => {
const currentIdx = state.queries.findIndex(