Merge pull request #1515 from bechi/bugs/ui-06

fix long user name
This commit is contained in:
Gustavo Maximiliano Cortez 2014-10-06 11:04:53 -03:00
commit 93fe01f46a
2 changed files with 4 additions and 4 deletions

View file

@ -14,9 +14,9 @@
alt="{{copayer.peerId}}"
width="30">
<div class="ellipsis" tooltip-placement="top" tooltip="{{copayer.nick}}">
<small class="text-gray" ng-show="copayer.index == 0">{{'Me'|translate}}</small>
<small class="text-gray" ng-show="copayer.index > 0">{{copayer.nick}}</small>
<div tooltip-placement="top" tooltip="{{copayer.nick}}">
<small class="text-gray db" ng-show="copayer.index == 0">{{'Me'|translate}}</small>
<small class="text-gray ellipsis" ng-show="copayer.index > 0">{{copayer.nick}}</small>
</div>
</div>
</div>