fix(cms): rename "Album Name" label to "Release Name" across release header form

Covers AlbumHeaderFields MudTextField label + RequiredError, and the matching
code-side validation messages in BatchEdit and BatchUpload for consistency.
This commit is contained in:
daniel-c-harvey
2026-06-13 19:45:55 -04:00
parent add43c5a7d
commit 2bd9aa7b74
3 changed files with 3 additions and 3 deletions
@@ -5,7 +5,7 @@
<MudGrid> <MudGrid>
<MudItem xs="12" sm="6"> <MudItem xs="12" sm="6">
<MudTextField Value="AlbumName" ValueChanged="@((string v) => AlbumNameChanged.InvokeAsync(v))" <MudTextField Value="AlbumName" ValueChanged="@((string v) => AlbumNameChanged.InvokeAsync(v))"
T="string" Label="Album Name" Required="true" RequiredError="Album Name is required" T="string" Label="Release Name" Required="true" RequiredError="Release Name is required"
Variant="Variant.Outlined" Disabled="Disabled" /> Variant="Variant.Outlined" Disabled="Disabled" />
</MudItem> </MudItem>
<MudItem xs="12" sm="6"> <MudItem xs="12" sm="6">
@@ -288,7 +288,7 @@
if (string.IsNullOrWhiteSpace(_albumName)) if (string.IsNullOrWhiteSpace(_albumName))
{ {
_errorMessage = "Album Name is required."; _errorMessage = "Release Name is required.";
return; return;
} }
@@ -204,7 +204,7 @@
if (string.IsNullOrWhiteSpace(_albumName)) if (string.IsNullOrWhiteSpace(_albumName))
{ {
_errorMessage = "Album Name is required."; _errorMessage = "Release Name is required.";
return; return;
} }