fixed warning message but where it displayed fiat instead of bch or btc
This commit is contained in:
parent
c600b81137
commit
7792a71841
1 changed files with 2 additions and 1 deletions
|
|
@ -464,7 +464,8 @@ angular.module('copayApp.controllers').controller('amountController', function($
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($scope.showWarningMessage) {
|
if ($scope.showWarningMessage) {
|
||||||
var message = 'Are you sure you want to send ' + $scope.unit.toUpperCase() + '?';
|
var u = $scope.unit == 'BCH' || $scope.unit == 'BTC' ? $scope.unit : $scope.alternativeUnit;
|
||||||
|
var message = 'Are you sure you want to send ' + u.toUpperCase() + '?';
|
||||||
popupService.showConfirm(message, null, 'Yes', 'No', function(res) {
|
popupService.showConfirm(message, null, 'Yes', 'No', function(res) {
|
||||||
if (!res) return;
|
if (!res) return;
|
||||||
finish();
|
finish();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue