Skip to content

Commit

Permalink
fix(mail(js)): open one distinct popup for each action
Browse files Browse the repository at this point in the history
Fixes #5431
  • Loading branch information
cgx committed Nov 23, 2021
1 parent ff1eeca commit addf3c1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UI/WebServerResources/js/Mailer/MessageController.js
Expand Up @@ -485,7 +485,10 @@
this.message.uid]
.join('/'),
wId = this.message.$absolutePath();
if (action) url += '/' + action;
if (action) {
wId += '/' + action;
url += '/' + action;
}
popupWindow = $window.open(url, wId,
["width=680",
"height=520",
Expand Down

0 comments on commit addf3c1

Please sign in to comment.