From 5cb6415fef4f8a698da2516821fae42fb921d517 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 1 May 2023 10:28:36 -0600 Subject: [PATCH] Et2Link: Fix projectmanager did not open in pm tab Broken by 12e42d6 --- api/js/etemplate/Et2Link/Et2Link.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/Et2Link/Et2Link.ts b/api/js/etemplate/Et2Link/Et2Link.ts index 872f3c5146..e11ca1c34e 100644 --- a/api/js/etemplate/Et2Link/Et2Link.ts +++ b/api/js/etemplate/Et2Link/Et2Link.ts @@ -295,7 +295,7 @@ export class Et2Link extends ExposeMixin(Et2Widget(LitElement)) imple this.egw().open(Object.assign({ app: this.app, id: this.entryId - }, this.dataset), "", this.linkHook, this.dataset.extra_args, this.extraLinkTarget, this.targetApp || this.app); + }, this.dataset), "", this.linkHook, this.dataset.extra_args, this.extraLinkTarget || this.app, this.targetApp || this.app); } _ev.stopImmediatePropagation();