« get me outta code hell

content: generateTrackInfoPage: credit sources section - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/generateCommentarySection.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-06-21 17:57:37 -0300
committer(quasar) nebula <qznebula@protonmail.com>2024-06-24 15:03:10 -0300
commit3ec7d66ece76cea96b0caa14e5729b5642a76afd (patch)
tree66746a5a24e9df5f2574dd8d4db96417d7062d56 /src/content/dependencies/generateCommentarySection.js
parentd109eddb08e3e4c147e3b383fb2502936a253707 (diff)
content: generateTrackInfoPage: credit sources section
Diffstat (limited to 'src/content/dependencies/generateCommentarySection.js')
-rw-r--r--src/content/dependencies/generateCommentarySection.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/content/dependencies/generateCommentarySection.js b/src/content/dependencies/generateCommentarySection.js
index c5090660..6e7fea6a 100644
--- a/src/content/dependencies/generateCommentarySection.js
+++ b/src/content/dependencies/generateCommentarySection.js
@@ -27,11 +27,19 @@ export default {
         : !!entries[0].date),
   }),
 
-  generate: (data, relations, {html, language}) =>
+  slots: {
+    title: {type: 'html', mutable: false},
+  },
+
+  generate: (data, relations, slots, {html, language}) =>
     html.tags([
       relations.heading
         .slots({
-          title: language.$('misc.artistCommentary'),
+          title:
+            (html.isBlank(slots.title)
+              ? language.$('misc.artistCommentary')
+              : slots.title),
+
           attributes: [
             {id: 'artist-commentary'},
             data.firstEntryIsDated &&