« get me outta code hell

content: generateReleaseInfoContributionsLine: don't cut past 4 contributions - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-11 22:35:44 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-11 22:35:44 -0300
commit5af5e68b66168a984264595bb1de10c50253c06a (patch)
tree3d0fe49a477c28672dbefc103c10d6f32fede3fd
parent1441e7784fda0356dfdea8f2ab360dbb506879f1 (diff)
content: generateReleaseInfoContributionsLine: don't cut past 4 contributions
That .slice was meant to go to linkContribution from the start,
not here!
-rw-r--r--src/content/dependencies/generateReleaseInfoContributionsLine.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/content/dependencies/generateReleaseInfoContributionsLine.js b/src/content/dependencies/generateReleaseInfoContributionsLine.js
index 5a97e65..c48f169 100644
--- a/src/content/dependencies/generateReleaseInfoContributionsLine.js
+++ b/src/content/dependencies/generateReleaseInfoContributionsLine.js
@@ -12,7 +12,6 @@ export default {
     return {
       contributionLinks:
         contributions
-          .slice(0, 4)
           .map(contrib => relation('linkContribution', contrib)),
     };
   },