mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
fixes query params are passed as slug to the app url for go-to-app action (#4118)
This commit is contained in:
parent
962e4d36cc
commit
3ca7de1c40
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ export const executeAction = (_ref, event, mode, customVariables) => {
|
|||
_ref.props.history.go();
|
||||
} else {
|
||||
if (confirm('The app will be opened in a new tab as the action is triggered from the editor.')) {
|
||||
window.open(urlJoin(window.public_config?.TOOLJET_HOST, `applications/${slug}`));
|
||||
window.open(urlJoin(window.public_config?.TOOLJET_HOST, url));
|
||||
}
|
||||
}
|
||||
return Promise.resolve();
|
||||
|
|
|
|||
Loading…
Reference in a new issue