mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
Do not show toast for failed queries (#916)
* Do not show error toast when query or transformation fails * Show error toast for transformation failure
This commit is contained in:
parent
53f510796f
commit
a980cbcb34
1 changed files with 1 additions and 1 deletions
|
|
@ -416,7 +416,7 @@ export function runQuery(_ref, queryId, queryName, confirmed = undefined) {
|
|||
}
|
||||
|
||||
if (data.status === 'failed') {
|
||||
toast.error(data.message, { hideProgressBar: true, autoClose: 3000 });
|
||||
console.error(data.message);
|
||||
|
||||
return _self.setState(
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue