client/about dialog: reduce the contributor list length to 10

This commit is contained in:
Adorian Doran
2026-03-24 18:54:48 +02:00
parent 0a0157a1ef
commit 11a46f0f58
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
"lead-dev": "lead developer",
"original-dev": "original developer"
},
"contributor_full_list": "See the full list",
"contributor_full_list": "See the entire community",
"data_directory": "Data directory:",
"donate": "Donate"
},

View File

@@ -114,7 +114,7 @@ function revisionLink(appInfo: AppInfo | null) {
}
function Contributors(params: {data: ContributorList}) {
return params.data.contributors.map((c, index, array) => {
return params.data.contributors.splice(0, 10).map((c, index, array) => {
return <Fragment key={c.name}>
<ContributorListItem data={c} />