mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-21 03:01:28 +08:00
build: 10.11.116
fix: 网关监控页面 js释放 test: Benchmark编译错误
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<Project>
|
||||
|
||||
<PropertyGroup>
|
||||
<PluginVersion>10.11.115</PluginVersion>
|
||||
<ProPluginVersion>10.11.115</ProPluginVersion>
|
||||
<DefaultVersion>10.11.115</DefaultVersion>
|
||||
<PluginVersion>10.11.116</PluginVersion>
|
||||
<ProPluginVersion>10.11.116</ProPluginVersion>
|
||||
<DefaultVersion>10.11.116</DefaultVersion>
|
||||
<AuthenticationVersion>10.11.6</AuthenticationVersion>
|
||||
<SourceGeneratorVersion>10.11.6</SourceGeneratorVersion>
|
||||
<NET8Version>8.0.21</NET8Version>
|
||||
|
@@ -1610,9 +1610,10 @@ EventCallback.Factory.Create<MouseEventArgs>(this, async e =>
|
||||
{
|
||||
|
||||
Disposed = true;
|
||||
ChannelRuntimeDispatchService.UnSubscribe(Refresh);
|
||||
ChannelRuntimeDispatchService?.UnSubscribe(Refresh);
|
||||
|
||||
await Module.InvokeVoidAsync("dispose", Id);
|
||||
if (Module != null)
|
||||
await Module.InvokeVoidAsync("dispose", Id);
|
||||
|
||||
await base.DisposeAsync(disposing);
|
||||
}
|
||||
|
@@ -296,9 +296,10 @@ public partial class VariableRuntimeInfo
|
||||
{
|
||||
|
||||
Disposed = true;
|
||||
VariableRuntimeDispatchService.UnSubscribe(Refresh);
|
||||
VariableRuntimeDispatchService?.UnSubscribe(Refresh);
|
||||
|
||||
await Module.InvokeVoidAsync("dispose", Id);
|
||||
if (Module != null)
|
||||
await Module.InvokeVoidAsync("dispose", Id);
|
||||
|
||||
await base.DisposeAsync(disposing);
|
||||
}
|
||||
|
Reference in New Issue
Block a user