fix: open URL type shortcut in workspace in a new tab (#26367)

This commit is contained in:
Ritwik Puri 2024-05-07 21:27:01 +05:30 committed by GitHub
parent f07ea138d5
commit e6118cca3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}