Manager Cleanup

This commit is contained in:
Daniel Harvey
2026-05-25 10:17:21 -04:00
parent 2574ed9af8
commit 98b2c8d744
8 changed files with 23 additions and 18 deletions
@@ -1,4 +1,4 @@
@page "/cms/tracks/{Id:long}"
@page "/tracks/{Id:long}"
@using DeepDrftManager.Services
@attribute [Authorize]
@inject ICmsTrackService CmsTrackService
@@ -12,7 +12,7 @@
<MudContainer MaxWidth="MaxWidth.Medium" Class="mt-8">
<MudButton Variant="Variant.Text"
StartIcon="@Icons.Material.Filled.ArrowBack"
Href="/cms/tracks"
Href="/tracks"
Class="mb-4">
Back to tracks
</MudButton>
@@ -172,7 +172,7 @@
if (result.Success)
{
Snackbar.Add("Track deleted.", Severity.Success);
Nav.NavigateTo("/cms/tracks");
Nav.NavigateTo("/tracks");
}
else
{