mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 04:00:59 +01:00
editor: fix clicking on internal link opens a new tab
This commit is contained in:
@@ -54,8 +54,9 @@ export function clickHandler(options: ClickHandlerOptions): Plugin {
|
||||
// const target = link?.target ?? attrs.target;
|
||||
|
||||
if (link && href) {
|
||||
if (view.editable) {
|
||||
options.editor.storage.openLink?.(href);
|
||||
if (options.editor.storage.openLink) {
|
||||
event.preventDefault();
|
||||
setTimeout(() => options.editor.storage.openLink?.(href));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user