mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 05:06:37 +02:00
client/about dialog: reduce the contributor list length to 10
This commit is contained in:
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user