Added tag/creator status update functionality on the API and UI layers.
All checks were successful
ci / build-test (push) Successful in 2m29s
ci / publish-image (push) Successful in 1m42s

This commit is contained in:
2026-04-25 14:17:13 -04:00
parent dbed9fc905
commit 204e186354
8 changed files with 182 additions and 34 deletions

View File

@@ -1,4 +1,5 @@
@using JSMR.UI.Blazor.Components
@using AntDesign
@using JSMR.UI.Blazor.Components
@using JSMR.UI.Blazor.Services
@inject SessionState Session
@@ -6,6 +7,8 @@
@inherits LayoutComponentBase
<AntContainer />
<MudLayout>
<MudAppBar Elevation="1" Dense="@_dense">
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="MudBlazor.Color.Inherit" Edge="Edge.Start" OnClick="@ToggleDrawer" />
@@ -40,6 +43,7 @@
<MudMainContent Class="pt-18 px-8">
@Body
</MudMainContent>
@* Required *@
<MudThemeProvider @ref="_mudThemeProvider" @bind-IsDarkMode="_isDarkMode" />
<MudPopoverProvider />
@@ -49,10 +53,10 @@
@* Needed for snackbars *@
<MudSnackbarProvider />
</MudLayout>
<RadzenComponents @rendermode="RenderMode.InteractiveAuto" />
<AntContainer />
@code{
private bool _open = false;