« get me outta code hell

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:
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 &&