mirror of
https://github.com/zadam/trilium.git
synced 2026-05-06 14:06:59 +02:00
chore(client): remove limit on contributors
This commit is contained in:
@@ -175,7 +175,7 @@ function FooterLink(props: {children: ComponentChildren, text: string, url: stri
|
||||
type HoverCallback = (contributor: Contributor, isHovering: boolean, part: "name" | "role") => void;
|
||||
|
||||
function Contributors({data, onHover}: {data: ContributorList, onHover?: HoverCallback}) {
|
||||
return data.contributors.slice(0, 10).map((c, index, array) => {
|
||||
return data.contributors.map((c, index, array) => {
|
||||
return <Fragment key={c.name}>
|
||||
<ContributorListItem data={c} onHover={onHover} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user