summaryrefslogtreecommitdiffstats
path: root/templates/contact.html
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-15 14:21:46 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-15 14:21:46 +0200
commit5fe41356b5bb3bd1dada821619e71f024e14d4fb (patch)
tree968cee052754559472c10da3c1ca690920e02eb0 /templates/contact.html
parent246dc972c470a62eaaa9ffababbbe39e1bbd9f25 (diff)
Fix sorting as well as placeholder generation
Diffstat (limited to 'templates/contact.html')
-rw-r--r--templates/contact.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/contact.html b/templates/contact.html
index d97d6963..7052615a 100644
--- a/templates/contact.html
+++ b/templates/contact.html
@@ -1,6 +1,6 @@
<a class="app-content-list-item-link" ng-click="ctrl.openContact()">
<img class="app-content-list-item-icon contact__icon" ng-show="ctrl.contact.photo()!==undefined" data-ng-src="data:image/png;base64,{{ctrl.contact.photo()}}" />
- <div class="app-content-list-item-icon contact__icon" ng-show="ctrl.contact.photo()===undefined" ng-style="{'background-color': (ctrl.contact.uid() | contactColor) }">{{ ctrl.contact.fullName() | firstCharacter }}</div>
+ <div class="app-content-list-item-icon contact__icon" ng-show="ctrl.contact.photo()===undefined" ng-style="{'background-color': (ctrl.contact.uid() | contactColor) }">{{ ctrl.contact.displayName() | firstCharacter }}</div>
<div class="app-content-list-item-star icon-star" data-starred="false"></div>
<div class="app-content-list-item-line-one" ng-class="{'no-line-two':!ctrl.contact.email()}">{{ ctrl.contact.displayName() | newContact }}</div>
<div class="app-content-list-item-line-two">{{ctrl.contact.email()}}</div>