Do not show "creator" column on address book for 1-1 wallets

This commit is contained in:
Gustavo Maximiliano Cortez 2014-09-16 17:48:18 -03:00
parent ac2b588887
commit 0acf0dac67
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@
<tr>
<th translate>Label</th>
<th translate>Address</th>
<th class="hide-for-small-only" translate>Creator</th>
<th class="hide-for-small-only" ng-show="$root.wallet.isShared()" translate>Creator</th>
<th class="hide-for-small-only" translate>Date</th>
<th class="hide-for-small-only">&nbsp;</th>
</tr>
@ -192,7 +192,7 @@
ng-class="{'addressbook-disabled': info.hidden}">
<td><a ng-click="copyAddress(addr)" title="Copy address">{{info.label}}</a></td>
<td class="size-12">{{addr}} <span class="btn-copy" clip-copy="addr"></span></td>
<td class="hide-for-small-only">{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
<td ng-show="$root.wallet.isShared()" class="hide-for-small-only">{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
<td class="hide-for-small-only"><time>{{info.createdTs | amCalendar}}</time></td>
<td class="hide-for-small-only" width="5"><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
'Enable' : 'Disable'}}</a></td>