fix: fixed git handling

This commit is contained in:
Georg Bauer
2026-07-28 21:11:46 +02:00
parent 9b5b3a2f6a
commit dbccaf7088
6 changed files with 86 additions and 51 deletions

View File

@@ -175,7 +175,7 @@ impl App {
self.chat_follow_tail = true;
self.context_notice = None;
self.clear_a2ui();
self.composer.clear();
self.composer = text_editor::Content::new();
self.queued_inputs.clear();
self.system_prompt_seen_at = 0;
self.context_used = 0;
@@ -190,7 +190,7 @@ impl App {
self.chat_follow_tail = true;
self.context_notice = None;
self.clear_a2ui();
self.composer.clear();
self.composer = text_editor::Content::new();
self.queued_inputs.clear();
self.system_prompt_seen_at = 0;
self.context_used = 0;