KIT!
505b867e1a
Songs entries can be broken when updating the datatables (if songs are removed). The frontend now filters those empty songs out.
22 lines
714 B
Plaintext
22 lines
714 B
Plaintext
@inject HttpClient Client
|
|
@inject ISnackbar Snackbar
|
|
|
|
<MudDialog>
|
|
<TitleContent>
|
|
<MudText Typo="Typo.h6">
|
|
<MudIcon Icon="@Icons.Material.Filled.DeleteForever" Class="mr-3 mb-n1" />
|
|
@((MarkupString)(string)@Localizer["Delete User"])
|
|
</MudText>
|
|
</TitleContent>
|
|
<DialogContent>
|
|
<MudText>
|
|
@((MarkupString)(string)Localizer["Delete User Confirm"])
|
|
</MudText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">@Localizer["Cancel"]</MudButton>
|
|
<MudButton Color="Color.Error" OnClick="DeleteUser">
|
|
<MudText>@Localizer["Delete"]</MudText>
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |