diff options
Diffstat (limited to 'src/content/dependencies/generateContributionList.js')
| -rw-r--r-- | src/content/dependencies/generateContributionList.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/content/dependencies/generateContributionList.js b/src/content/dependencies/generateContributionList.js index 3716bcd6..4f68321f 100644 --- a/src/content/dependencies/generateContributionList.js +++ b/src/content/dependencies/generateContributionList.js @@ -9,10 +9,14 @@ export default { chronologyKind: {type: 'string'}, }, - generate: (relations, slots, {html}) => + generate: (relations, slots, {html, language}) => html.tag('ul', {[html.onlyIfContent]: true}, + relations.contributionLinks.length > 1 && + language.$order('misc.artistLink.withContribution', 0) === 'ARTIST' && + {class: 'offset-tooltips'}, + relations.contributionLinks .map(contributionLink => html.tag('li', |