Skip to content
Snippets Groups Projects
Commit b7d8a6f8 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Api: fix hide select amounts when only one amount is allowed

parent b0404696
No related branches found
No related tags found
No related merge requests found
...@@ -55,30 +55,30 @@ ...@@ -55,30 +55,30 @@
</div> </div>
<!-- Amount --> <!-- Amount -->
<div class="item item-icon-left-padding item-tx no-border" ng-if="!transferData.amounts"> <div class="item item-icon-left-padding item-tx no-border" ng-if="!transferData.amounts" style="min-height: 56px;">
<h2 translate>API.TRANSFER.AMOUNT</h2> <h2 translate>API.TRANSFER.AMOUNT</h2>
<ion-spinner class="badge item-note" icon="android" ng-show="loading"></ion-spinner> <ion-spinner class="badge item-note" icon="android" ng-show="loading"></ion-spinner>
<div class="badge item-note badge-calm ng-hide" ng-show="!loading" ng-bind-html="transferData.amount|formatAmount:{useRelative: false, currency: currency.name}"></div> <div class="badge badge-calm ng-hide" ng-show="!loading" ng-bind-html="transferData.amount|formatAmount:{useRelative: false, currency: currency.name}"></div>
<div class="item-note badge-secondary ng-hide" ng-show="!loading" ng-bind-html="transferData.amount|formatAmount:{useRelative: true, currency: currency.name, currentUD: currency.currentUD}"></div> <div class="badge badge-secondary ng-hide" ng-show="!loading" ng-bind-html="transferData.amount|formatAmount:{useRelative: true, currency: currency.name, currentUD: currency.currentUD}"></div>
</div> </div>
<!-- Amounts --> <!-- Amounts -->
<ion-item <label ng-if="transferData.amounts"
class="item-icon-left-padding item-input item-select" style="min-height: 58px;"
class="item item-icon-left-padding item-input item-select item-tx no-border"
ng-class="{ 'item-input-error': form.$submitted && !transferData.amount}"> ng-class="{ 'item-input-error': form.$submitted && !transferData.amount}">
<div class="input-label" translate>API.TRANSFER.AMOUNT</div> <div class="input-label">
<span translate>API.TRANSFER.AMOUNT</span>
<h4 class="assertive hidden-xs hidden-sm" ng-if="!transferData.amount">
<span translate>API.TRANSFER.AMOUNTS_HELP</span>
</h4>
</div>
<select ng-model="transferData.amount" <select ng-model="transferData.amount"
required="true" required="true"
ng-options="(amount |formatAmount:{useRelative: false, currency: currency.name}) for amount in transferData.amounts"> ng-options="(amount |formatAmount:{useRelative: false, currency: currency.name}) for amount in transferData.amounts">
</select> </select>
<div class="hidden-xs hidden-sm"> <span class="badge badge-secondary ng-hide" ng-show="transferData.amount" ng-bind-html="transferData.amount|formatAmount:{useRelative: true, currency: currency.name, currentUD: currency.currentUD}"></span>
<h3 class="assertive" ng-if="!transferData.amount"> </label>
<i class="icon ion-alert-circled" ng-if="form.$submitted && !transferData.amount"></i>
<span translate>API.TRANSFER.AMOUNTS_HELP</span>
</h3>
<span class="gray badge-secondary " ng-bind-html="transferData.amount|formatAmount:{useRelative: true, currency: currency.name, currentUD: currency.currentUD}"></span>
</div>
</ion-item>
<div class="form-errors" <div class="form-errors"
ng-if="form.$submitted && !transferData.amount"> ng-if="form.$submitted && !transferData.amount">
<div class="form-error"> <div class="form-error">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment