fix: open URL type shortcut in workspace in a new tab (#26367)
This commit is contained in:
parent
f07ea138d5
commit
e6118cca3c
1 changed files with 1 additions and 6 deletions
|
|
@ -49,12 +49,7 @@ export default class ShortcutWidget extends Widget {
|
|||
}
|
||||
|
||||
if (this.type == "URL") {
|
||||
if (frappe.open_in_new_tab) {
|
||||
window.open(this.url, "_blank");
|
||||
frappe.open_in_new_tab = false;
|
||||
} else {
|
||||
window.location.href = this.url;
|
||||
}
|
||||
window.open(this.url, "_blank");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue