editor: fix clicking on internal link opens a new tab

This commit is contained in:
Abdullah Atta
2024-03-21 12:28:26 +05:00
parent 9040a4561d
commit 68e97f17d0

View File

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