From 2bd9aa7b74edad9c9cfa1b08a5101b3049cabf19 Mon Sep 17 00:00:00 2001 From: daniel-c-harvey Date: Sat, 13 Jun 2026 19:45:55 -0400 Subject: [PATCH] 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. --- DeepDrftManager/Components/Pages/Tracks/AlbumHeaderFields.razor | 2 +- DeepDrftManager/Components/Pages/Tracks/BatchEdit.razor | 2 +- DeepDrftManager/Components/Pages/Tracks/BatchUpload.razor | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DeepDrftManager/Components/Pages/Tracks/AlbumHeaderFields.razor b/DeepDrftManager/Components/Pages/Tracks/AlbumHeaderFields.razor index 8af8370..89c70e9 100644 --- a/DeepDrftManager/Components/Pages/Tracks/AlbumHeaderFields.razor +++ b/DeepDrftManager/Components/Pages/Tracks/AlbumHeaderFields.razor @@ -5,7 +5,7 @@ diff --git a/DeepDrftManager/Components/Pages/Tracks/BatchEdit.razor b/DeepDrftManager/Components/Pages/Tracks/BatchEdit.razor index 38ac5ed..46506c4 100644 --- a/DeepDrftManager/Components/Pages/Tracks/BatchEdit.razor +++ b/DeepDrftManager/Components/Pages/Tracks/BatchEdit.razor @@ -288,7 +288,7 @@ if (string.IsNullOrWhiteSpace(_albumName)) { - _errorMessage = "Album Name is required."; + _errorMessage = "Release Name is required."; return; } diff --git a/DeepDrftManager/Components/Pages/Tracks/BatchUpload.razor b/DeepDrftManager/Components/Pages/Tracks/BatchUpload.razor index 3611188..17cf3d7 100644 --- a/DeepDrftManager/Components/Pages/Tracks/BatchUpload.razor +++ b/DeepDrftManager/Components/Pages/Tracks/BatchUpload.razor @@ -204,7 +204,7 @@ if (string.IsNullOrWhiteSpace(_albumName)) { - _errorMessage = "Album Name is required."; + _errorMessage = "Release Name is required."; return; }