« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/page/artist.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/page/artist.js')
-rw-r--r--src/page/artist.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/page/artist.js b/src/page/artist.js
index dae0e19..9d17b48 100644
--- a/src/page/artist.js
+++ b/src/page/artist.js
@@ -32,7 +32,7 @@ export function targets({wikiData}) {
 export function write(artist, {wikiData}) {
     const { groupData, wikiInfo } = wikiData;
 
-    const { name, urls, note } = artist;
+    const { name, urls, contextNotes } = artist;
 
     const artThingsAll = sortByDate(unique([
         ...artist.albumsAsCoverArtist ?? [],
@@ -295,10 +295,10 @@ export function write(artist, {wikiData}) {
                             alt: strings('misc.alt.artistAvatar')
                         })}
                         <h1>${strings('artistPage.title', {artist: name})}</h1>
-                        ${note && fixWS`
+                        ${contextNotes && fixWS`
                             <p>${strings('releaseInfo.note')}</p>
                             <blockquote>
-                                ${transformMultiline(note)}
+                                ${transformMultiline(contextNotes)}
                             </blockquote>
                             <hr>
                         `}