We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a3e9b commit b02fc4bCopy full SHA for b02fc4b
ui/src/views/application/index.vue
@@ -568,7 +568,10 @@ function settingApplication(event: any, row: any) {
568
if (event?.ctrlKey) {
569
event?.preventDefault()
570
event.stopPropagation()
571
- window.open(`/application/workspace/${row.id}/workflow`, '_blank')
+ const newUrl = router.resolve({
572
+ path: `/application/workspace/${row.id}/workflow`,
573
+ }).href
574
+ window.open(newUrl)
575
} else {
576
router.push({ path: `/application/workspace/${row.id}/workflow` })
577
}
0 commit comments