mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-07 05:55:44 +01:00
Filer repositories in UI by namespace
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user