Fix showing QR code on address list when it shouldn't
This commit is contained in:
parent
6ea9831913
commit
cef5b72557
3 changed files with 8 additions and 2 deletions
|
|
@ -410,7 +410,7 @@
|
|||
<div class="addresses" ng-controller="AddressesController">
|
||||
<div ng-show='$root.wallet.isReady()'>
|
||||
<div class="row">
|
||||
<div class="large-9 medium-12 columns" ng-if="addresses[0]">
|
||||
<div class="large-9 medium-12 columns" ng-if="!!(addresses|removeEmpty).length">
|
||||
<div class="large-8 medium-8 columns" ng-init="showAll=0">
|
||||
<a class="panel radius db" ng-repeat="addr in addresses|removeEmpty|limitAddress:showAll"
|
||||
ng-click="selectAddress(addr)"
|
||||
|
|
@ -458,7 +458,7 @@
|
|||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="columns text-center m10t" ng-class="{'large-3' : !!addresses[0]}">
|
||||
<div class="columns text-center m10t" ng-class="{'large-3' : !!(addresses|removeEmpty).length}">
|
||||
<p> Create a New <strong> Address </strong> </p>
|
||||
<button class="secondary radius expandi new-address" ng-click="newAddr()"
|
||||
ng-disabled="loading" loading="Creating"> Create </button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue