summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2017-10-27 18:56:24 +0200
committerGitHub <noreply@github.com>2017-10-27 18:56:24 +0200
commita5d0150cefe197db601a60f3d0f1940d2428897b (patch)
treec0c98cd805fecaa48657618515168f66aaeca4d0 /templates
parent53fdc57371d79cd0dd9bdc1abb61456ca69bc694 (diff)
parent8c362f3bc90b69b0bae643a23805002b151dbf74 (diff)
Merge pull request #406 from nextcloud/fix-duplicate-name-sort
Fallback to uid sorting
Diffstat (limited to 'templates')
-rw-r--r--templates/contactList.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/contactList.html b/templates/contactList.html
index 1cac2f0d..f5f7da06 100644
--- a/templates/contactList.html
+++ b/templates/contactList.html
@@ -1,6 +1,6 @@
<div class="contacts-list" ng-class="{loading: ctrl.loading, 'mobile-show': ctrl.show}">
<div class="app-content-list-item"
- ng-repeat="contact in ctrl.filteredContacts = (ctrl.contactList | contactGroupFilter:ctrl.routeParams.gid | localeOrderBy:ctrl.sortBy | filter:query | limitTo:ctrl.limitTo) as filtered track by contact.uid()"
+ ng-repeat="contact in ctrl.filteredContacts = (ctrl.contactList | contactGroupFilter:ctrl.routeParams.gid | localeOrderBy:ctrl.sortBy | filter:query | limitTo:ctrl.limitTo ) as filtered track by contact.uid()"
contact data="contact"
ng-click="setSelected(contact.uid())"
ng-class="{active: contact.uid() === ctrl.getSelectedId()}">