« get me outta code hell

data: make various wiki-properties fn's into compositions - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/group.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-12-06 13:55:33 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-12-06 13:55:33 -0400
commit722fe82043e74bdb7c10ed214a9f3006a26ff42b (patch)
tree2949fa4b4235acef5cf0b012c6071d7ed0b57bf2 /src/data/things/group.js
parentc7cc130f97c2a0f390ba0e07e3aa048395636817 (diff)
data: make various wiki-properties fn's into compositions
Diffstat (limited to 'src/data/things/group.js')
-rw-r--r--src/data/things/group.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/data/things/group.js b/src/data/things/group.js
index 20a74fa1..b7fe49e5 100644
--- a/src/data/things/group.js
+++ b/src/data/things/group.js
@@ -39,7 +39,7 @@ export class Group extends Thing {
   static [Thing.getPropertyDescriptors] = ({Album, Artist, Series}) => ({
     // Update & expose
 
-    name: name('Unnamed Group'),
+    name: name(V('Unnamed Group')),
     directory: directory(),
 
     excludeFromGalleryTabs: [
@@ -59,7 +59,7 @@ export class Group extends Thing {
       exposeConstant(V(false)),
     ],
 
-    divideAlbumsByStyle: flag(false),
+    divideAlbumsByStyle: flag(V(false)),
 
     description: contentString(),
 
@@ -246,10 +246,10 @@ export class GroupCategory extends Thing {
   static [Thing.getPropertyDescriptors] = ({Group}) => ({
     // Update & expose
 
-    name: name('Unnamed Group Category'),
+    name: name(V('Unnamed Group Category')),
     directory: directory(),
 
-    excludeGroupsFromGalleryTabs: flag(false),
+    excludeGroupsFromGalleryTabs: flag(V(false)),
 
     color: color(),
 
@@ -295,7 +295,7 @@ export class Series extends Thing {
   static [Thing.getPropertyDescriptors] = ({Album, Group}) => ({
     // Update & expose
 
-    name: name('Unnamed Series'),
+    name: name(V('Unnamed Series')),
 
     showAlbumArtists: {
       flags: {update: true, expose: true},