We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8e4f6 commit b64db65Copy full SHA for b64db65
frontend/src/ts/input/handlers/insert-text.ts
@@ -69,6 +69,7 @@ export async function onInsertText(options: OnInsertTextParams): Promise<void> {
69
// make sure to not call TestInput.input.syncWithInputElement in here
70
// it will be updated later in the body of onInsertText
71
setInputElementValue(inputValue.slice(0, -options.data.length));
72
+ TestInput.input.syncWithInputElement();
73
for (let i = 0; i < options.data.length; i++) {
74
const char = options.data[i] as string;
75
0 commit comments