Skip to content

Commit 9197831

Browse files
committed
limit results in duplicates ui
1 parent d0e31b8 commit 9197831

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlow/src/public/Duplicates.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ <h1 translate lib="web">duplicates tracking</h1>
8585
<div class="modal-dialog" role="document">
8686
<div class="modal-content">
8787
<div class="modal-header">
88-
<h5 class="modal-title">{{ctrl.model.name}} </h5>
88+
<h5 class="modal-title">First 20 duplicates</h5>
8989
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
9090
<span aria-hidden="true">&times;</span>
9191
</button>
@@ -99,7 +99,7 @@ <h5 class="modal-title">{{ctrl.model.name}} </h5>
9999
<th></th>
100100
</thead>
101101
<tbody>
102-
<tr ng-repeat="model in ctrl.model.items">
102+
<tr ng-repeat="model in ctrl.model.items | limitTo: 20">
103103
<td class="btn-cell">
104104
<!-- <a ng-click="ctrl.OpenEntity(model)" class="table-btn"><i class="az-edit"></i>{{ model }}</a> -->
105105
<a ng-href="#/Entity/{{ctrl.collection}}/{{model._id}}" ng-click="ctrl.CloseModal()"

0 commit comments

Comments
 (0)