Fix Open card links in current tab. Not in new tab anymore.

Thanks to bronger, ManZosh and xet7 !

Fixes https://github.com/wekan/wekan/discussions/3534
This commit is contained in:
Lauri Ojansivu 2022-08-13 12:54:37 +03:00
parent f480f945c5
commit ee3c5cbb6a

View file

@ -394,7 +394,9 @@ Template.viewer.events({
} else {
const href = event.currentTarget.href;
if (href) {
window.open(href, '_blank');
// Open links in current browser tab, changed from _blank to _self:
// https://github.com/wekan/wekan/discussions/3534
window.open(href, '_self');
}
}
if (prevent) {