Fix pagination when agenda got >100 entrys (Fixes #2156)

This commit is contained in:
Sean Engelhardt 2016-06-07 14:17:36 +02:00
parent 28584c62f6
commit 235eed1172
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@
<a href="" ng-click="editDialog(item)" class="pull-right"><translate>Edit ...</translate></a>
</div>
</table>
<uib-pagination ng-if="itemsFiltered.length > itemsPerPage" total-items="itemsFiltered.length" items-per-page="itemsPerPage" ng-model="currentPage"
<uib-pagination ng-show="itemsFiltered.length > itemsPerPage" total-items="itemsFiltered.length" items-per-page="itemsPerPage" ng-model="currentPage"
ng-change="pageChanged()"
class="pagination-sm" direction-links="false" boundary-links="true" first-text="&laquo;" last-text="&raquo;">
</uib-pagination>