You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr/Pages/Radarr/CustomFormats/CustomFormatChooser.razor

17 lines
656 B

<div class="d-flex flex-column" style="@Style">
<MudList>
@foreach (var item in _selectableItems)
{
<MudListItem @key=item Class="py-0" OnClick="@(() => ItemToggled(item))">
<MudCheckBox T="bool"
Checked="@item.Selected"
CheckedChanged="@(isChecked => ItemSelected(item, isChecked))"
Label="@item.Item.Name"
Color="Color.Primary"
Class="my-n2"
Style="white-space: nowrap" />
</MudListItem>
}
</MudList>
</div>