Added front-end "Set English Tag Name" logic.
All checks were successful
ci / build-test (push) Successful in 2m27s
ci / publish-image (push) Successful in 1m27s

This commit is contained in:
2026-04-26 00:40:30 -04:00
parent 204e186354
commit 2355d7fe65
4 changed files with 106 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
@inherits FeedbackComponent<SetEnglishTagNameModel>
@using AntDesign
@using JSMR.UI.Blazor.Models
<Form Model="@Options">
<Input @bind-Value="@Options.UpdatedEnglishTagName" Placeholder="English Name" AutoFocus />
</Form>
@code {
[CascadingParameter]
public ModalRef ModalRef { get; set; } = default!;
public override async Task OnFeedbackOkAsync(ModalClosingEventArgs args)
{
await base.OnFeedbackOkAsync(args);
await CloseFeedbackAsync();
}
}