Browse Source

Merge pull request #12153 from rqx110/UiMessageAlertExtendable

pull/12156/head
maliming 4 years ago
committed by GitHub
parent
commit
623a9dbba2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor.cs

5
framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor.cs

@ -94,6 +94,11 @@ public partial class UiMessageAlert : ComponentBase, IDisposable
Options = e.Options;
Callback = e.Callback;
await ShowMessageAlert();
}
protected virtual async Task ShowMessageAlert()
{
await InvokeAsync(ModalRef.Show);
}

Loading…
Cancel
Save