Skip to content

Commit

Permalink
fixed muddatagrid
Browse files Browse the repository at this point in the history
  • Loading branch information
neozhu committed Dec 28, 2024
1 parent 4c6e5c8 commit c5798e1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/Application/Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.5.1" />
<PackageReference Include="Hangfire.Core" Version="1.8.17" />
<PackageReference Include="ZiggyCreatures.FusionCache" Version="2.0.0-preview-3" />
<PackageReference Include="ActualLab.Fusion" Version="9.7.6" />
<PackageReference Include="ActualLab.Fusion.Blazor" Version="9.7.6" />
<PackageReference Include="ActualLab.Generators" Version="9.7.6">
<PackageReference Include="ActualLab.Fusion" Version="9.8.3" />
<PackageReference Include="ActualLab.Fusion.Blazor" Version="9.8.3" />
<PackageReference Include="ActualLab.Generators" Version="9.8.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions src/Infrastructure/Infrastructure.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<PackageReference Include="QuestPDF" Version="2025.1.0-alpha0" />
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="8.1.1-dev-00120" />
<PackageReference Include="Serilog.Sinks.Postgresql.Alternative" Version="4.1.1" />
<PackageReference Include="Serilog.Sinks.Postgresql.Alternative" Version="4.1.3" />
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Blazor.Serilog.Sinks.SQLite" Version="1.0.8" />
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0-dev-02301" />
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\Application.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions src/Server.UI/Components/Dialogs/DeleteConfirmation.razor
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
{
var result = await Mediator.Send(Command);
await result.MatchAsync(
async data=>
data=>
{
Snackbar.Add($"{ConstantString.DeleteSuccess}", Severity.Info);
MudDialog.Close(DialogResult.Ok(true));
return data;
return Task.FromResult(0);
},
errors =>
{
Expand Down
6 changes: 3 additions & 3 deletions src/Server.UI/Server.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<PackageReference Include="BlazorDownloadFile" Version="2.4.0.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.6" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.0" />
<PackageReference Include="MudBlazor" Version="8.0.0-preview.6" />
<PackageReference Include="Toolbelt.Blazor.HotKeys2" Version="5.1.0" />
<PackageReference Include="Blazor-ApexCharts" Version="4.0.1" />
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
<PackageReference Include="Toolbelt.Blazor.HotKeys2" Version="6.0.0" />
<PackageReference Include="Blazor-ApexCharts" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/Server.UI/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"AppConfigurationSettings": {
"ApplicationUrl": "https://architecture.blazorserver.com",
"Version": "24.4.1",
"Version": "1.1.63",
"App": "Blazor",
"AppName": "Blazor Dashboard",
"AppFlavor": "Blazor .NET 9.0",
Expand Down

0 comments on commit c5798e1

Please sign in to comment.