Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Piped view min, max, and total to numbers #505

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/templates/md-table-pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>

<div class="buttons">
<div class="label">{{$pagination.min()}} - {{$pagination.max()}} {{$pagination.label.of}} {{$pagination.total}}</div>
<div class="label">{{$pagination.min() | number}} - {{$pagination.max() | number}} {{$pagination.label.of}} {{$pagination.total | number}}</div>

<md-button class="md-icon-button" type="button" ng-if="$pagination.showBoundaryLinks()" ng-click="$pagination.first()" ng-disabled="$pagination.disabled || !$pagination.hasPrevious()" aria-label="First">
<md-icon md-svg-icon="navigate-first.svg"></md-icon>
Expand Down