mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix for query runs
This commit is contained in:
parent
61d612ed64
commit
a98eda9f95
1 changed files with 5 additions and 0 deletions
|
|
@ -128,6 +128,11 @@ function executeAction(_ref, event, mode) {
|
|||
})
|
||||
}
|
||||
|
||||
if (event.actionId === 'run-query') {
|
||||
const { queryId, queryName } = event;
|
||||
return runQuery(_ref, queryId, queryName);
|
||||
}
|
||||
|
||||
if (event.actionId === 'open-webpage') {
|
||||
const url = resolveReferences(event.url, _ref.state.currentState);
|
||||
window.open(url, '_blank');
|
||||
|
|
|
|||
Loading…
Reference in a new issue