You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I select an entire line of text or all the text, I cannot replace the content by typing any letter; I can only delete the selected content. That's when I discovered this issue.
Here is the video demonstrating the issue.
2024-11-27.14.55.49.mov
The text was updated successfully, but these errors were encountered:
Because I have globally bound the keydown event elsewhere, I skip executing the global keydown if text input is active. I determine this using document.activeElement. However, after using Alt+A to select all, the focus is lost, causing the global keydown to be executed.
When I select an entire line of text or all the text, I cannot replace the content by typing any letter; I can only delete the selected content. That's when I discovered this issue.
Here is the video demonstrating the issue.
2024-11-27.14.55.49.mov
The text was updated successfully, but these errors were encountered: