23 lines
758 B
Plaintext
23 lines
758 B
Plaintext
@using MudBlazor
|
|
|
|
<MudDialog>
|
|
<TitleContent>
|
|
<MudText Typo="Typo.h6">Delete Map</MudText>
|
|
</TitleContent>
|
|
<DialogContent>
|
|
<MudText>Are you sure you want to delete map "@MapName"? This action cannot be undone.</MudText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Error" Variant="Variant.Filled" OnClick="Submit">Delete</MudButton>
|
|
</DialogActions>
|
|
</MudDialog>
|
|
|
|
@code {
|
|
[CascadingParameter] IMudDialogInstance MudDialog { get; set; } = null!;
|
|
[Parameter] public string MapName { get; set; } = string.Empty;
|
|
|
|
void Cancel() => MudDialog.Cancel();
|
|
void Submit() => MudDialog.Close(DialogResult.Ok(true));
|
|
}
|