Skip to content

Commit

Permalink
chore: Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
wzh425 committed Mar 18, 2024
1 parent fb1a2cb commit 8902b05
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<MasaFrameworkPackageVersion>1.0.0</MasaFrameworkPackageVersion>
<MasaFrameworkPackageVersion>1.0.1-preview.1</MasaFrameworkPackageVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Web/Masa.Mc.Web.Admin/Masa.Mc.Web.Admin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Mapster" Version="7.3.0" />
<PackageReference Include="Masa.BuildingBlocks.Authentication.Identity" Version="$(MasaFrameworkPackageVersion)" />
<PackageReference Include="Masa.Contrib.SearchEngine.AutoComplete.ElasticSearch" Version="$(MasaFrameworkPackageVersion)" />
<PackageReference Include="Masa.Stack.Components" Version="0.0.421" />
<PackageReference Include="Masa.Stack.Components" Version="0.0.441" />
<PackageReference Include="Masa.Utils.Data.Elasticsearch" Version="$(MasaFrameworkPackageVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.16" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.5" />
Expand Down
4 changes: 2 additions & 2 deletions src/Web/Masa.Mc.Web.Admin/Shared/AdminCompontentBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ public async Task HubConnectionBuilder()
await HubConnection.StartAsync();
}

protected override void Dispose(bool disposing)
protected override ValueTask DisposeAsync(bool disposing)
{
HubConnection?.DisposeAsync();
base.Dispose(disposing);
return base.DisposeAsync(disposing);
}

public async Task Throttle(Func<Task> callback, int wait = 500, bool immediate = true)
Expand Down

0 comments on commit 8902b05

Please sign in to comment.