Fix creator column from address book
This commit is contained in:
parent
d360c8eeb5
commit
2bdfbcae5c
1 changed files with 2 additions and 2 deletions
|
|
@ -181,7 +181,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th translate>Label</th>
|
<th translate>Label</th>
|
||||||
<th translate>Address</th>
|
<th translate>Address</th>
|
||||||
<th class="hide-for-small-only" ng-show="$root.wallet.isShared()" translate>Creator</th>
|
<th ng-class="{'hide-for-small-only' : $root.wallet.isShared()}" ng-show="$root.wallet.isShared()" translate>Creator</th>
|
||||||
<th class="hide-for-small-only" translate>Date</th>
|
<th class="hide-for-small-only" translate>Date</th>
|
||||||
<th class="hide-for-small-only"> </th>
|
<th class="hide-for-small-only"> </th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -192,7 +192,7 @@
|
||||||
ng-class="{'addressbook-disabled': info.hidden}">
|
ng-class="{'addressbook-disabled': info.hidden}">
|
||||||
<td><a ng-click="copyAddress(addr)" title="Copy address">{{info.label}}</a></td>
|
<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="size-12">{{addr}} <span class="btn-copy" clip-copy="addr"></span></td>
|
||||||
<td ng-show="$root.wallet.isShared()" class="hide-for-small-only">{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
|
<td ng-show="$root.wallet.isShared()" ng-class="{'hide-for-small-only' : $root.wallet.isShared()}">{{$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"><time>{{info.createdTs | amCalendar}}</time></td>
|
||||||
<td class="hide-for-small-only" width="5"><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
|
<td class="hide-for-small-only" width="5"><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
|
||||||
'Enable' : 'Disable'}}</a></td>
|
'Enable' : 'Disable'}}</a></td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue