« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/data/yaml.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/yaml.js b/src/data/yaml.js
index 7cd23cfc..6b5156ef 100644
--- a/src/data/yaml.js
+++ b/src/data/yaml.js
@@ -230,7 +230,7 @@ export const processTrackSectionDocument = makeProcessDocument(T.TrackSectionHel
   },
 
   propertyFieldMapping: {
-    name: 'Group',
+    name: 'Section',
     color: 'Color',
     dateOriginallyReleased: 'Date Originally Released',
   },
@@ -637,7 +637,7 @@ export const dataSteps = [
     documentMode: documentModes.headerAndEntries,
     processHeaderDocument: processAlbumDocument,
     processEntryDocument(document) {
-      return 'Group' in document
+      return 'Section' in document
         ? processTrackSectionDocument(document)
         : processTrackDocument(document);
     },