@inject IJSRuntime js; @code { [Parameter, Required] public FeDisc Disc { get; set; } } @Disc?.Name
@foreach (var subSet in (Disc?.TrackSets).KeepNoEmpty().WithIndex()) {
} @if (Disc?.Bks != null) {
}
@code { private Modal modal { get; set; } public void Show() { js.InvokeVoidAsync("ResetModalDisc"); modal.Show(); } }