diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-11-23 21:33:15 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-11-24 13:47:33 -0400 |
commit | db786c25a9fafc4cac37b108b4ea433019741c07 (patch) | |
tree | 4641a449ead2c499ddec1a568f1445dcaa24ff03 /src/content/dependencies | |
parent | 841daeb4a29657485488ac55a743492b010658de (diff) |
content, external-links: minor fixes
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/generateAlbumReleaseInfo.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/content/dependencies/generateAlbumReleaseInfo.js b/src/content/dependencies/generateAlbumReleaseInfo.js index 4b819091..dd5baab9 100644 --- a/src/content/dependencies/generateAlbumReleaseInfo.js +++ b/src/content/dependencies/generateAlbumReleaseInfo.js @@ -94,7 +94,11 @@ export default { links: language.formatDisjunctionList( relations.externalLinks - .map(link => link.slot('context', 'album'))), + .map(link => + link.slots({ + context: 'album', + style: 'normal', + }))), })), ]); }, |