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
@@ -204,7 +204,7 @@
if (string.IsNullOrWhiteSpace(_albumName))
{
_errorMessage = "Album Name is required.";
_errorMessage = "Release Name is required.";
return;
}