fix(coding-agent): clear idle follow-up submissions

closes #3926
This commit is contained in:
Mario Zechner
2026-04-29 23:16:09 +02:00
parent 20ca45d574
commit 39146f3296
2 changed files with 2 additions and 0 deletions

View File

@@ -3342,6 +3342,7 @@ export class InteractiveMode {
}
// If not streaming, Alt+Enter acts like regular Enter (trigger onSubmit)
else if (this.editor.onSubmit) {
this.editor.setText("");
this.editor.onSubmit(text);
}
}