« get me outta code hell

content: chronology labels in release info lines - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/generateReleaseInfoContributionsLine.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-06-18 11:36:28 -0300
committer(quasar) nebula <qznebula@protonmail.com>2024-06-18 22:56:16 -0300
commitf5fdcf8c5e47249e2a807203dd58b8b4819f8791 (patch)
treebc178573a6393e57eceb07fbdc489b1c363ce6cc /src/content/dependencies/generateReleaseInfoContributionsLine.js
parent7a10bac9cb001753467a6e66f2698125ac4c03e7 (diff)
content: chronology labels in release info lines
Diffstat (limited to 'src/content/dependencies/generateReleaseInfoContributionsLine.js')
-rw-r--r--src/content/dependencies/generateReleaseInfoContributionsLine.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/content/dependencies/generateReleaseInfoContributionsLine.js b/src/content/dependencies/generateReleaseInfoContributionsLine.js
index ed60886b..3e96ed44 100644
--- a/src/content/dependencies/generateReleaseInfoContributionsLine.js
+++ b/src/content/dependencies/generateReleaseInfoContributionsLine.js
@@ -17,11 +17,12 @@ export default {
   },
 
   slots: {
-    stringKey: {type: 'string'},
-
     showContribution: {type: 'boolean', default: true},
     showExternalLinks: {type: 'boolean', default: true},
     showChronology: {type: 'boolean', default: true},
+
+    stringKey: {type: 'string'},
+    chronologyKind: {type: 'string'},
   },
 
   generate(relations, slots, {html, language}) {
@@ -37,6 +38,7 @@ export default {
               showContribution: slots.showContribution,
               showExternalLinks: slots.showExternalLinks,
               showChronology: slots.showChronology,
+              chronologyKind: slots.chronologyKind,
             }))),
     });
   },