1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Merge pull request #4710 from Budibase/fix/execute-query-action

Fix execute query action
This commit is contained in:
Andrew Kingston 2022-02-28 08:15:12 +00:00 committed by GitHub
commit 3c6cef3108

View file

@ -127,12 +127,16 @@ const queryExecutionHandler = async action => {
// Trigger a notification and invalidate the datasource as long as this
// was not a readable query
if (!query.readable) {
API.notifications.error.success("Query executed successfully")
notificationStore.actions.success("Query executed successfully")
await dataSourceStore.actions.invalidateDataSource(query.datasourceId)
}
return { result }
} catch (error) {
notificationStore.actions.error(
"An error occurred while executing the query"
)
// Abort next actions
return false
}