mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-09 13:44:29 +08:00
missing result visible check
This commit is contained in:
parent
2a116763ed
commit
83cc9848e6
1 changed files with 2 additions and 2 deletions
|
|
@ -629,8 +629,8 @@ function handleTab(event: JQuery.KeyDownEvent, popupVisible: boolean): void {
|
|||
ManualRestart.reset();
|
||||
}
|
||||
|
||||
// insert tab character if needed
|
||||
if (shouldInsertTabCharacter) {
|
||||
// insert tab character if needed (only during the test)
|
||||
if (!TestUI.resultVisible && shouldInsertTabCharacter) {
|
||||
event.preventDefault();
|
||||
handleChar("\t", TestInput.input.current.length);
|
||||
setWordsInput(" " + TestInput.input.current);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue