@using Start.Client.Components.Shared @using Start.Client.Store.Features.DeleteContainer @using Fluxor @inherits Fluxor.Blazor.Web.Components.FluxorComponent @inject IDispatcher dispatch @inject IState state
Delete Container "@this.state.Value.BookmarkContainerTitleToDelete"
@if (this.state.Value.DeleteContainerErrorMessage != null) { @this.state.Value.DeleteContainerErrorMessage }

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

@if (!this.state.Value.IsLoadingDeleteContainer) { } else { }
@code { public void OnDialogClose() { this.dispatch.Dispatch(new HideDeleteContainerFormAction()); } public void OnConfirmDelete() { this.dispatch.Dispatch(new SubmitDeleteContainerAction( this.state.Value.BookmarkContainerIdToDelete)); } }