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

@@ -4,6 +4,7 @@
### Fixed
- Fixed idle follow-up submission to clear the editor like normal message submission ([#3926](https://github.com/badlogic/pi-mono/issues/3926)).
- Updated the sandbox extension example lockfile to resolve the vulnerable `lodash-es` transitive dependency ([#3901](https://github.com/badlogic/pi-mono/issues/3901)).
## [0.70.6] - 2026-04-28

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);
}
}