Stabilize code contributor count

This commit is contained in:
pietervdvn 2021-06-27 02:41:30 +02:00
parent 322a282ad5
commit ab0d510cdd

View file

@ -30,7 +30,10 @@ export default class AttributionPanel extends Combine {
"<br/>",
new VariableUiElement(contributions.map(contributions => {
const sorted = Array.from(contributions, ([name, value]) => ({name, value})).filter(x => x.name !== undefined && x.name !== "undefined");
const sorted = Array.from(contributions, ([name, value]) => ({
name,
value
})).filter(x => x.name !== undefined && x.name !== "undefined");
if (sorted.length === 0) {
return "";
}
@ -69,12 +72,11 @@ export default class AttributionPanel extends Combine {
private static CodeContributors(): BaseUIElement {
const total = contributors.contributors.length;
let filtered = contributors.contributors
let filtered = [...contributors.contributors]
filtered.splice(10, total - 10);
let contribsStr = filtered.map(c => c.contributor)
.join(", ")
let contribsStr = filtered.map(c => c.contributor).join(", ")
if (contribsStr === "") {
// Hmm, something went wrong loading the contributors list. Lets show nothing