diff --git a/scm-ui-components/packages/ui-components/src/LinkPaginator.js b/scm-ui-components/packages/ui-components/src/LinkPaginator.js index 51dc75f03c..a662272b11 100644 --- a/scm-ui-components/packages/ui-components/src/LinkPaginator.js +++ b/scm-ui-components/packages/ui-components/src/LinkPaginator.js @@ -123,21 +123,25 @@ class LinkPaginator extends React.Component { } render() { - const { t } = this.props; - return ( - - ); + const { collection, t } = this.props; + + if(collection) { + return ( + + ); + } + return null; } }