mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-27 21:42:56 +00:00
Fixed chat bug causing the input box to occupy too much space
This commit is contained in:
parent
61ffddf1ec
commit
f71107193e
@ -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;
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user