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 2afd809 commit 6c2dfa5Copy full SHA for 6c2dfa5
src/AutSoft.Mud.Blazor/Filter/FilterRoot.razor.cs
@@ -87,7 +87,8 @@ private async Task OnFieldChangedAsync()
87
{
88
await Task.Delay(200);
89
await UpdateHasFilterAsync();
90
- FilterAsync();
+ // This call is not awaited because of performance causes
91
+ _ = FilterAsync();
92
}
93
94
/// <summary>
@@ -172,6 +173,7 @@ public async Task ResetAsync()
172
173
Model = await CreateDefaultModelAsync();
174
175
await ModelChanged.InvokeAsync(Model);
176
177
178
179
0 commit comments