Merge pull request #6117 from ajp8164/feat/wavecrest-card-compatibility
Wavecrest card compatibility
This commit is contained in:
commit
d90b6486ab
2 changed files with 7 additions and 1 deletions
|
|
@ -77,6 +77,12 @@ angular.module('copayApp.controllers').controller('bitpayCardController', functi
|
|||
txs[i].price = _price(txs[i]);
|
||||
txs[i].runningBalance = runningBalance;
|
||||
_runningBalance(txs[i]);
|
||||
|
||||
if (txs[i].merchant.city && txs[i].merchant.state) {
|
||||
txs[i].merchant.location = txs[i].merchant.city + ', ' + txs[i].merchant.state;
|
||||
} else {
|
||||
txs[i].merchant.location = txs[i].merchant.city || txs[i].merchant.state || '';
|
||||
}
|
||||
}
|
||||
self.bitpayCardTransactionHistory = txs;
|
||||
self.balance = history.currentCardBalance;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue