Fixed a layout bug within the chat page (#294)

This commit is contained in:
Thorsten Sommer 2025-02-24 12:48:41 +01:00 committed by GitHub
parent 9699754ec7
commit 03431b85b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
@using AIStudio.Settings @using AIStudio.Settings
<MudSelect T="Provider" Value="@this.ProviderSettings" ValueChanged="@this.SelectionChanged" Validation="@this.ValidateProvider" Adornment="Adornment.Start" AdornmentIcon="@Icons.Material.Filled.Apps" Margin="Margin.Dense" Label="Provider" Class="mb-3 rounded-lg" Variant="Variant.Outlined"> <MudSelect T="Provider" Value="@this.ProviderSettings" ValueChanged="@this.SelectionChanged" Validation="@this.ValidateProvider" Adornment="Adornment.Start" AdornmentIcon="@Icons.Material.Filled.Apps" Margin="Margin.Dense" Label="Provider" Class="mb-3 rounded-lg" OuterClass="flex-grow-0" Variant="Variant.Outlined">
@foreach (var provider in this.GetAvailableProviders()) @foreach (var provider in this.GetAvailableProviders())
{ {
<MudSelectItem Value="@provider"/> <MudSelectItem Value="@provider"/>

View File

@ -9,4 +9,5 @@
- Improved data security by enforcing provider filtering based on the chosen confidence level. To ensure this in the future, source code analyzers have been added to warn developers about insecure code. - Improved data security by enforcing provider filtering based on the chosen confidence level. To ensure this in the future, source code analyzers have been added to warn developers about insecure code.
- Improved the readability of descriptions inside the ERI server assistant. - Improved the readability of descriptions inside the ERI server assistant.
- Fixed a bug in which `APP_SETTINGS` appeared as a valid destination in the "send to" menu. - Fixed a bug in which `APP_SETTINGS` appeared as a valid destination in the "send to" menu.
- Fixed a layout bug within the chat page, where the top part uses too much space.
- Upgraded to Rust 1.85.0 and .NET 8.0.13. - Upgraded to Rust 1.85.0 and .NET 8.0.13.