fix: clear touch identifier on comment text area pointerdown (#9172)

This commit is contained in:
Richard Knoll
2025-06-26 13:56:08 -07:00
committed by GitHub
parent 9cc3e11856
commit 0d6da6cfc4
2 changed files with 3 additions and 0 deletions

View File

@@ -176,6 +176,7 @@ export class TextInputBubble extends Bubble {
// Don't let the pointerdown event get to the workspace.
browserEvents.conditionalBind(textArea, 'pointerdown', this, (e: Event) => {
e.stopPropagation();
touch.clearTouchIdentifier();
});
browserEvents.conditionalBind(textArea, 'change', this, this.onTextChange);