Upgraded MudBlazor to v8.4.0, which fixes some bugs we were experiencing

This commit is contained in:
Thorsten Sommer 2025-03-17 18:23:33 +01:00
parent dd40ca3e5b
commit f48b98c988
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
5 changed files with 6 additions and 13 deletions

View File

@ -347,7 +347,7 @@ jobs:
cargo tauri build --target ${{ matrix.rust_target }} --bundles ${{ matrix.tauri_bundle }}
- name: Upload artifact (macOS)
if: startsWith(matrix.platform, 'macos') && startsWith(github.ref, 'refs/tags/v')
if: startsWith(matrix.platform, 'macos')
uses: actions/upload-artifact@v4
with:
name: MindWork AI Studio (macOS ${{ matrix.dotnet_runtime }})

View File

@ -49,7 +49,7 @@
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.0.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.3" />
<PackageReference Include="MudBlazor" Version="8.3.0" />
<PackageReference Include="MudBlazor" Version="8.4.0" />
<PackageReference Include="MudBlazor.Markdown" Version="8.0.0" />
<PackageReference Include="ReverseMarkdown" Version="4.6.0" />
</ItemGroup>

View File

@ -39,9 +39,9 @@
},
"MudBlazor": {
"type": "Direct",
"requested": "[8.3.0, )",
"resolved": "8.3.0",
"contentHash": "DLc1aK8AgSas82AERWLLefWKadIF7HhYhvgO8Y7jYLZe5v1r4v3rX9pzrzTsQkuPGe6y65tob73kM6gael+WdQ==",
"requested": "[8.4.0, )",
"resolved": "8.4.0",
"contentHash": "JdpJXe13fhPElc4ajoDEr7tbzib+N1SVUaov21lZAVd0DgRWuVTJsfVyrEFCD/oSopRcvub5cpHSJM7MYUVCfQ==",
"dependencies": {
"Microsoft.AspNetCore.Components": "9.0.1",
"Microsoft.AspNetCore.Components.Web": "9.0.1",

View File

@ -76,14 +76,6 @@
display: initial !important;
}
/* Fix for MudBlazor, tooltips and selects inside of popover
See issue https://github.com/MudBlazor/MudBlazor/issues/11015
and https://github.com/MindWorkAI/AI-Studio/issues/346
*/
.mud-popover-provider > .mud-popover-open {
z-index: 1604 !important;
}
/* Context div for inner scrolling component */
.inner-scrolling-context {
display: flex;

View File

@ -1,3 +1,4 @@
# v0.9.38, build 213 (2025-03-17 17:07 UTC)
- Added the "stop generation" button to all assistants.
- Upgraded MudBlazor to v8.4.0, which fixes some bugs we were experiencing.
- Updated the ERI v1 specification for the ERI server assistant & fixed spelling of the `UNKNOWN` role.