From 774cf81fc8eb097b05ad73b1cb039198a8a04724 Mon Sep 17 00:00:00 2001 From: Aitor Moreno Date: Tue, 4 Feb 2025 11:29:25 +0100 Subject: [PATCH] :bug: Fix wrong blinking position after paste (#5756) --- .../src/editor/controllers/SelectionController.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/frontend/text-editor/src/editor/controllers/SelectionController.js b/frontend/text-editor/src/editor/controllers/SelectionController.js index 77cb109a9..fbc2d263b 100644 --- a/frontend/text-editor/src/editor/controllers/SelectionController.js +++ b/frontend/text-editor/src/editor/controllers/SelectionController.js @@ -1047,6 +1047,7 @@ export class SelectionController extends EventTarget { if (fragment.children.length === 1 && fragment.firstElementChild?.dataset?.inline === "force" ) { + const collapseNode = fragment.lastElementChild.firstChild if (this.isInlineStart) { this.focusInline.before(...fragment.firstElementChild.children) } else if (this.isInlineEnd) { @@ -1058,9 +1059,12 @@ export class SelectionController extends EventTarget { ) this.focusInline.after(...fragment.firstElementChild.children, newInline) } - return; + return this.collapse( + collapseNode, + collapseNode.nodeValue.length + ); } - + const collapseNode = fragment.lastElementChild.lastElementChild.firstChild if (this.isParagraphStart) { this.focusParagraph.before(fragment); } else if (this.isParagraphEnd) { @@ -1073,6 +1077,7 @@ export class SelectionController extends EventTarget { ); this.focusParagraph.after(fragment, newParagraph); } + return this.collapse(collapseNode, collapseNode.nodeValue.length); } /**