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.Gui/Pages/CustomFormatPage.razor

25 lines
430 B

@page "/custom-format"
@inherits ReactiveInjectableComponentBase<CustomFormatViewModel>
@if (ViewModel is null)
{
return;
}
<MudPaper>
<CustomFormatGroup ViewModel="@ViewModel.Groups[0]" />
</MudPaper>
@code {
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
if (ViewModel != null)
{
await ViewModel.OnInit.Execute();
}
}
}