improve click-to-focus for multi line text inputs

This commit is contained in:
Jakob Pinterits
2024-11-29 13:53:26 +01:00
parent d4c8b36803
commit 157cf88f29
@@ -50,6 +50,9 @@ export class MultiLineTextInputComponent extends ComponentBase {
element.addEventListener("click", (event) => {
event.stopPropagation();
event.stopImmediatePropagation();
// Select the HTML text input
this.inputBox.focus();
});
element.addEventListener("pointerdown", (event) => {