Browse Source
Address Copilot review: wrap Clicked.InvokeAsync method group in lambda
pull/25349/head
maliming
3 weeks ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityAction.razor.cs
|
|
|
@ -69,7 +69,7 @@ public partial class MudEntityAction<TItem> : ComponentBase |
|
|
|
{ |
|
|
|
if (await UiMessageService.Confirm(ConfirmationMessage())) |
|
|
|
{ |
|
|
|
await InvokeAsync(Clicked.InvokeAsync); |
|
|
|
await InvokeAsync(() => Clicked.InvokeAsync()); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
|