Skip to content

chore: update AntDesign package to version 1.4.0 #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layout/src/AntDesign.ProLayout.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="AntDesign" Version="1.3.1" />
<PackageReference Include="AntDesign" Version="1.4.0" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' And '$(SolutionDir)'==''">
Expand Down
4 changes: 2 additions & 2 deletions src/layout/src/SettingDrawer/SettingDrawer.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private async Task UpdateColor(string color)

private async Task UpdateStyle()
{
_ = Message.Loading(new MessageConfig
Message.Loading(new MessageConfig
{
Content = "Loading theme",
Duration = 1
Expand Down Expand Up @@ -151,7 +151,7 @@ private async Task CopySetting(MouseEventArgs args)
{
var json = JsonSerializer.Serialize(SettingState.Value);
await JsInvokeAsync<object>(JSInteropConstants.Copy, json);
await Message.Success("copy success, please replace defaultSettings in wwwroot/appsettings.json");
Message.Success("copy success, please replace defaultSettings in wwwroot/appsettings.json");
}
}
}
Loading