diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-10 20:24:34 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-06-18 22:56:05 -0300 |
commit | edf2f46d0778b9505258cde878742b816289d1f6 (patch) | |
tree | b8e9f0134b99cffa11946f45540607411035589b /src/content | |
parent | cf7e1def135f925fefcde55e130c76598ab69cd4 (diff) |
data, content: various property & thing-type matches
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/generateArtistInfoPageTracksChunkItem.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/content/dependencies/generateArtistInfoPageTracksChunkItem.js b/src/content/dependencies/generateArtistInfoPageTracksChunkItem.js index 9674eb4f..d7460c80 100644 --- a/src/content/dependencies/generateArtistInfoPageTracksChunkItem.js +++ b/src/content/dependencies/generateArtistInfoPageTracksChunkItem.js @@ -1,5 +1,4 @@ import {empty} from '#sugar'; -import {isArtistContribution, isContributorContribution} from '#wiki-data'; export default { contentDependencies: [ @@ -20,11 +19,11 @@ export default { const creditedAsArtist = contribs - .some(isArtistContribution); + .some(contrib => contrib.isArtistContribution); const creditedAsContributor = contribs - .some(isContributorContribution); + .some(contrib => contrib.isContributorContribution); const annotatedContribs = contribs @@ -32,11 +31,11 @@ export default { const annotatedArtistContribs = annotatedContribs - .filter(isArtistContribution); + .filter(contrib => contrib.isArtistContribution); const annotatedContributorContribs = annotatedContribs - .filter(isContributorContribution); + .filter(contrib => contrib.isContributorContribution); // Don't display annotations associated with crediting in the // Contributors field if the artist is also credited as an Artist |