Github user AhyoungRyu commented on the issue:
https://github.com/apache/zeppelin/pull/2225
@1ambda If we update angular-bootstrap version, the pagination in Helium
page won't work since they change the pagination lib name (`pagination` ->`ul
uib-pagination`)
So you might need to change [this
part](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/helium/helium.html#L189)
from
```
<pagination boundary-links="true" total-items="defaultPackages.length"
ng-model="$parent.currentPage" class="pagination-sm"
ng-show="$parent.pkgListByType === types"
max-size="maxSize"
items-per-page="itemsPerPage"
ng-class="{'hide-first-boundaries': $parent.currentPage
== 1, 'hide-last-boundaries': $parent.currentPage >=
defaultPackages.length/itemsPerPage}"
previous-text="‹" next-text="›"
first-text="«" last-text="»"></pagination>
```
to
```
<ul uib-pagination boundary-links="true"
total-items="defaultPackages.length"
ng-model="$parent.currentPage" class="pagination-sm"
ng-show="$parent.pkgListByType === types"
max-size="maxSize"
items-per-page="itemsPerPage"
ng-class="{'hide-first-boundaries': $parent.currentPage
== 1, 'hide-last-boundaries': $parent.currentPage >=
defaultPackages.length/itemsPerPage}"
previous-text="‹" next-text="›"
first-text="«" last-text="»"></ul>
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---