Only show the top ten contributors

This commit is contained in:
pietervdvn 2021-05-30 00:15:46 +02:00
parent 4e09a5584b
commit 00fb194dc2

View file

@ -72,7 +72,8 @@ export default class AttributionPanel extends Combine {
const total = contributors.contributors.length;
let filtered = contributors.contributors
.splice(10, total - 10);
filtered.splice(10, total - 10);
let contribsStr = filtered.map(c => c.contributor)
.join(", ")