@using Start.Client.Components.Shared @using Start.Client.Store.Features.DeleteGroup @using Fluxor @inherits Fluxor.Blazor.Web.Components.FluxorComponent @inject IDispatcher dispatch @inject IState state
Delete Group "@this.state.Value.BookmarkGroupTitleToDelete"
@if (this.state.Value.DeleteGroupErrorMessage != null) { @this.state.Value.DeleteGroupErrorMessage }

Are you sure you want to delete the bookmark container "@this.state.Value.BookmarkGroupTitleToDelete"?

@if (!this.state.Value.IsLoadingDeleteGroup) { } else { }
@code { public void OnDialogClose() { this.dispatch.Dispatch(new HideDeleteGroupFormAction()); } public void OnConfirmDelete() { this.dispatch.Dispatch(new SubmitDeleteGroupFormAction( this.state.Value.BookmarkGroupIdToDelete)); } }