2022-09-11 18:28:12 +02:00
|
|
|
@inject HttpClient Client
|
2022-09-06 16:32:36 +02:00
|
|
|
@inject ISnackbar Snackbar
|
|
|
|
|
|
|
|
<MudDialog>
|
|
|
|
<TitleContent>
|
|
|
|
<MudText Typo="Typo.h6">
|
|
|
|
<MudIcon Icon="@Icons.Material.Filled.DeleteForever" Class="mr-3 mb-n1"/>
|
|
|
|
Delete card?
|
|
|
|
</MudText>
|
|
|
|
</TitleContent>
|
|
|
|
<DialogContent>
|
|
|
|
<MudText>
|
|
|
|
Do you really want to delete the card?
|
|
|
|
All the related data will also be deleted and this process cannot be undone!
|
|
|
|
</MudText>
|
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
|
|
<MudButton Color="Color.Error" OnClick="DeleteCard">
|
|
|
|
<MudText>Delete Card</MudText>
|
|
|
|
</MudButton>
|
|
|
|
</DialogActions>
|
2022-09-11 18:33:58 +02:00
|
|
|
</MudDialog>
|