Files
qbtmud/Lantean.QBTMudBlade/Components/Dialogs/SubMenuDialog.razor
2024-07-18 18:52:03 +01:00

17 lines
590 B
Plaintext

<MudDialog ContentStyle="mix-width: 400px">
<DialogContent>
<MudGrid>
<MudItem xs="12">
<CascadingValue Value="Preferences">
<TorrentActions Hashes="Hashes" ParentAction="ParentAction" RenderType="RenderType.Children" MudDialog="MudDialog" Torrents="Torrents" Preferences="Preferences" />
</CascadingValue>
</MudItem>
</MudGrid>
</DialogContent>
<DialogActions>
@if (MultiAction)
{
<MudButton OnClick="Cancel">Close</MudButton>
}
</DialogActions>
</MudDialog>