mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
15 lines
571 B
Plaintext
15 lines
571 B
Plaintext
<MudDialog>
|
|
<DialogContent>
|
|
<MudText>Are you sure you want to remove the selected torrents from the transfer list?</MudText>
|
|
|
|
<MudGrid>
|
|
<MudItem xs="12">
|
|
<MudCheckBox Label="Also permanently delete the files" @bind-Value="DeleteFiles" LabelPosition="LabelPosition.End" />
|
|
</MudItem>
|
|
</MudGrid>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Remove</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |