Merge pull request #4415 from cmgustavo/bug/UI-03

Fix UI amount input
This commit is contained in:
Matias Alejo Garcia 2016-06-15 15:05:27 -03:00 committed by GitHub
commit 1fc4884b94
2 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@
<i class="icon-checkmark-circle size-14"></i>
</small>
</div>
<div ng-if="!showAlternative">
<div ng-show="!showAlternative">
<label for="amount">
<span translate>Amount</span>
</label>
@ -66,7 +66,7 @@
<a class="postfix button" ng-style="{'background-color':color}" ng-click="toggleAlternative()">{{unitName}}</a>
</div>
</div>
<div ng-if="showAlternative">
<div ng-show="showAlternative">
<label for="alternative"><span translate>Amount</span> [{{ alternativeIsoCode }}]
</label>
<div class="input">

View file

@ -425,7 +425,7 @@
<i class="icon-checkmark-circle size-14"></i>
</small>
</div>
<div ng-if="!home.canShowAlternative()">
<div ng-show="!home.canShowAlternative()">
<label for="amount">
<span translate>Amount</span>
</label>
@ -435,7 +435,7 @@
<a class="postfix button" ng-style="{'background-color':index.backgroundColor}" ng-click="home.showAlternative()">{{home.unitName}}</a>
</div>
</div>
<div ng-if="home.canShowAlternative()">
<div ng-show="home.canShowAlternative()">
<label for="alternative"><span translate>Amount</span> [{{ home.alternativeIsoCode }}]
</label>
<div class="input">