Fixed chat bug causing the input box to occupy too much space

This commit is contained in:
Thorsten Sommer 2025-07-02 13:59:18 +02:00
parent 61ffddf1ec
commit f71107193e
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5
2 changed files with 3 additions and 0 deletions

View File

@ -505,7 +505,9 @@ public partial class ChatComponent : MSGComponentBase, IAsyncDisposable
});
// Clear the input field:
await this.inputField.FocusAsync();
this.userInput = string.Empty;
await this.inputField.BlurAsync();
// Enable the stream state for the chat component:
this.isStreaming = true;

View File

@ -6,6 +6,7 @@
- Improved the implementation of configuration plugins to enhance long-term maintainability.
- Changed the timestamp display to use the local datetime format for the chats and assistants.
- Fixed a bug when editing data sources that caused the selected retrieval process of an ERI data source to not load correctly.
- Fixed a bug in the chat that caused the multi-line text input box to occupy too much space even after submitting a prompt.
- Upgraded to Rust 1.88.0.
- Upgraded MudBlazor to version 8.9.0.
- Upgraded Pdfium to version 137.0.7215.0.