Fix address list from receive section. Fix response when delete a wallet.
This commit is contained in:
parent
1c7a48e827
commit
174c6cb3de
10 changed files with 130 additions and 127 deletions
|
|
@ -27,8 +27,8 @@
|
|||
ng-repeat="(addr, info) in addressBook"
|
||||
ng-class="{'addressbook-disabled': info.hidden}">
|
||||
<td ng-click="copyToSend(addr)">
|
||||
<b>{{info.label}}</b>
|
||||
<div class="small address-size">{{::addr}}</div>
|
||||
<b>{{info.label}}</b><br>
|
||||
<small class="address-size">{{::addr}}</small>
|
||||
</td>
|
||||
<td class="show-for-large-up" ng-click="copyToSend(addr)" ng-show="$root.wallet.isShared()">{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
|
||||
<td ng-click="copyToSend(addr)" class="show-for-large-up"><time>{{::info.createdTs | amCalendar}}</time></td>
|
||||
|
|
|
|||
|
|
@ -4,14 +4,18 @@
|
|||
<div class="modal-mobile text-center" ng-init="addr = address.address">
|
||||
<qrcode size="220" data="{{addr}}"></qrcode>
|
||||
|
||||
<div class="m10t"
|
||||
<div class="m20t"
|
||||
ng-init="label = $root.wallet.addressBook[addr].label">
|
||||
<div class="size-12">
|
||||
{{addr}} <small class="label" ng-show="address.isChange">change</small>
|
||||
{{addr}}
|
||||
</div>
|
||||
<b class="db m5t" ng-show="label">
|
||||
<div class="m5t size-10 text-secondary" ng-show="address.isChange" translate>change</div>
|
||||
<div class="m10t" ng-show="label">
|
||||
({{label}})
|
||||
</b>
|
||||
</div>
|
||||
<div class="m5t" ng-show="address.balance && address.balance > 0">
|
||||
<b>{{address.balance}} {{$root.wallet.settings.unitName}}</b>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-center m10t" ng-if="isCordova">
|
||||
<button class="primary expand" ng-click="copyAddress(addr)">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue