Fixed profile selection visual bug and improved footer alignment in assistants

This commit is contained in:
Thorsten Sommer 2025-08-10 17:57:35 +02:00
parent 22aacff717
commit 2f09ea3913
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
3 changed files with 4 additions and 3 deletions

View File

@ -71,7 +71,7 @@
</div>
</ChildContent>
<FooterContent>
<MudStack Row="@true" Wrap="Wrap.Wrap" Class="ma-1">
<MudStack Row="@true" Wrap="Wrap.Wrap" AlignItems="AlignItems.Center" StretchItems="StretchItems.None" Class="ma-1">
@if (!this.FooterButtons.Any(x => x.Type is ButtonTypes.SEND_TO))
{

View File

@ -11,7 +11,7 @@
}
else
{
<MudIconButton Icon="@Icons.Material.Filled.Person4" />
<MudIconButton Size="Size.Small" Icon="@Icons.Material.Filled.Person4" />
}
</ActivatorContent>
<ChildContent>

View File

@ -5,4 +5,5 @@
- Added support for self-hosted LLMs using [vLLM](https://blog.vllm.ai/2023/06/20/vllm.html).
- Improved the display of enterprise configurations on the about page; configuration details are only shown when needed.
- Improved hot reloading on Unix-like systems when entire plugins were added or removed.
- Improved the German translation.
- Improved the German translation.
- Fixed a visual bug in all assistants that occurred when no profile was selected.