diff options
| 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 |
| commit | 722fe82043e74bdb7c10ed214a9f3006a26ff42b (patch) | |
| tree | 2949fa4b4235acef5cf0b012c6071d7ed0b57bf2 /src/data/things/group.js | |
| parent | c7cc130f97c2a0f390ba0e07e3aa048395636817 (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.js | 10 |
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}, |