Merge pull request #2185 from tsiegleauq/issue2156

Fix pagination when agenda got >100 entrys (Fixes #2156)
This commit is contained in:
Norman Jäckel 2016-06-08 10:45:07 +02:00
commit a8595ab234

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>