We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f084b9 commit f1d3d78Copy full SHA for f1d3d78
Radzen.Blazor/RadzenContextMenu.razor.cs
@@ -139,13 +139,12 @@ public async ValueTask DisposeAsync()
139
140
if (IsJSRuntimeAvailable)
141
{
142
- try {
143
- await JSRuntime.InvokeVoidAsync("Radzen.destroyPopup", UniqueID);
144
- }
145
- catch (JSDisconnectedException ex)
+ try
146
147
- // Ignore
+ await JSRuntime.InvokeVoidAsync("Radzen.destroyPopup", UniqueID);
148
}
+ catch
+ { }
149
150
151
Service.OnOpen -= OnOpen;
0 commit comments