Filer repositories in UI by namespace

This commit is contained in:
René Pfeuffer
2020-09-04 17:13:25 +02:00
parent 12806c7602
commit 2cfdaf1b0b
6 changed files with 81 additions and 32 deletions

View File

@@ -132,9 +132,9 @@ class LinkPaginator extends React.Component<Props> {
<nav className="pagination is-centered" aria-label="pagination">
{this.renderPreviousButton("pagination-previous", t("paginator.previous"))}
<ul className="pagination-list">
{this.pageLinks().map((link, index) => {
return <li key={index}>{link}</li>;
})}
{this.pageLinks().map((link, index) => (
<li key={index}>{link}</li>
))}
</ul>
{this.renderNextButton("pagination-next", t("paginator.next"))}
</nav>