Skip to content

Commit

Permalink
🐛 fix(ListItem): do not wait for the JS blur interop (#2287)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Dec 18, 2024
1 parent 4143357 commit 6640c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Masa.Blazor/Components/List/MListItem.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected virtual async Task HandleOnClick(MouseEventArgs args)
{
if (args.Detail > 0)
{
await Js.InvokeVoidAsync(JsInteropConstants.Blur, Ref);
_ = Js.InvokeVoidAsync(JsInteropConstants.Blur, Ref);
}

if (OnClick.HasDelegate)
Expand Down

0 comments on commit 6640c89

Please sign in to comment.