Fix for the Custom Amount screen now following the price display setting.

This commit is contained in:
Brendon Duncan 2018-08-14 17:24:17 +12:00
commit 197ee9eeeb

View file

@ -31,13 +31,13 @@
</p> </p>
</div> </div>
<div ng-show="!showingPaymentReceived" class="amount"> <div ng-show="!showingPaymentReceived" class="amount">
<div ng-show="selectedPriceDisplay=='fiat'"> <div ng-show="selectedPriceDisplay=='crypto'">
<span class="size-36"><formatted-amount value="{{amountUnitStr}}"></formatted-amount></span> <span class="size-36"><formatted-amount value="{{amountUnitStr}}"></formatted-amount></span>
<div class="size-14 amount-alternative"> <div class="size-14 amount-alternative">
<formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount> <formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount>
</div> </div>
</div> </div>
<div ng-show="selectedPriceDisplay=='crypto'"> <div ng-show="selectedPriceDisplay=='fiat'">
<span class="size-36"><formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount></span> <span class="size-36"><formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount></span>
<div class="size-14 amount-alternative"> <div class="size-14 amount-alternative">
<formatted-amount value="{{amountUnitStr}}"></formatted-amount> <formatted-amount value="{{amountUnitStr}}"></formatted-amount>