diff options
Diffstat (limited to 'src/content/dependencies/generateTrackArtistCommentarySection.js')
-rw-r--r-- | src/content/dependencies/generateTrackArtistCommentarySection.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/content/dependencies/generateTrackArtistCommentarySection.js b/src/content/dependencies/generateTrackArtistCommentarySection.js index 63c4e93d..e3041d3a 100644 --- a/src/content/dependencies/generateTrackArtistCommentarySection.js +++ b/src/content/dependencies/generateTrackArtistCommentarySection.js @@ -11,7 +11,7 @@ export default { extraDependencies: ['html', 'language'], query: (track) => ({ - otherRereleasesWithCommentary: + otherSecondaryReleasesWithCommentary: track.otherReleases .filter(track => !track.isMainRelease) .filter(track => !empty(track.commentary)), @@ -40,7 +40,7 @@ export default { .map(entry => relation('generateCommentaryEntry', entry)), otherReleaseTrackLinks: - query.otherRereleasesWithCommentary + query.otherSecondaryReleasesWithCommentary .map(track => relation('linkTrack', track)), }), @@ -67,11 +67,11 @@ export default { : null), otherReleaseAlbumNames: - query.otherRereleasesWithCommentary + query.otherSecondaryReleasesWithCommentary .map(track => track.album.name), otherReleaseAlbumColors: - query.otherRereleasesWithCommentary + query.otherSecondaryReleasesWithCommentary .map(track => track.album.color), }), @@ -130,7 +130,7 @@ export default { html.tag('p', {class: ['drop', 'commentary-drop']}, {[html.onlyIfContent]: true}, - language.encapsulate(capsule, 'info.seeRereleases', workingCapsule => { + language.encapsulate(capsule, 'info.seeSpecificReleases', workingCapsule => { const workingOptions = {}; workingOptions[language.onlyIfOptions] = ['albums']; |