diff options
-rw-r--r-- | src/content/dependencies/generateTrackArtistCommentarySection.js | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/content/dependencies/generateTrackArtistCommentarySection.js b/src/content/dependencies/generateTrackArtistCommentarySection.js index e3041d3a..228863a4 100644 --- a/src/content/dependencies/generateTrackArtistCommentarySection.js +++ b/src/content/dependencies/generateTrackArtistCommentarySection.js @@ -84,6 +84,20 @@ export default { title: language.$('misc.artistCommentary'), }), + html.tags([ + data.isSecondaryRelease && + !html.isBlank(relations.mainReleaseArtistCommentaryEntries) && + html.tag('p', {class: ['drop', 'commentary-drop']}, + {[html.onlyIfSiblings]: true}, + + language.$(capsule, 'info.releaseSpecific', { + album: + relations.thisReleaseAlbumLink, + })), + + relations.artistCommentaryEntries, + ]), + data.isSecondaryRelease && html.tags([ html.tag('p', {class: ['drop', 'commentary-drop']}, @@ -113,20 +127,6 @@ export default { relations.mainReleaseArtistCommentaryEntries, ]), - html.tags([ - data.isSecondaryRelease && - !html.isBlank(relations.mainReleaseArtistCommentaryEntries) && - html.tag('p', {class: ['drop', 'commentary-drop']}, - {[html.onlyIfSiblings]: true}, - - language.$(capsule, 'info.releaseSpecific', { - album: - relations.thisReleaseAlbumLink, - })), - - relations.artistCommentaryEntries, - ]), - html.tag('p', {class: ['drop', 'commentary-drop']}, {[html.onlyIfContent]: true}, |