mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 22:49:07 +00:00
Fixed a layout bug within the chat page (#294)
This commit is contained in:
parent
9699754ec7
commit
03431b85b4
@ -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"/>
|
||||||
|
@ -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.
|
Loading…
Reference in New Issue
Block a user