Fix the send search bg, mcc icon coloring, pre-auth header.

This commit is contained in:
Andy Phillipson 2017-06-16 12:45:11 -04:00
commit 0d4fd06bcc
No known key found for this signature in database
GPG key ID: D813A67D567D6C88
5 changed files with 86 additions and 21 deletions

View file

@ -92,10 +92,10 @@ angular.module('copayApp.controllers').controller('bitpayCardController', functi
return !tx.pending && tx.type.indexOf('93') == -1;
});
self.bitpayCardTransactionHistoryConfirming = lodash.filter(txs, function(tx) {
return tx.pending;
return tx.pending && tx.type.indexOf('93') == -1;
});
self.bitpayCardTransactionHistoryPreAuth = lodash.includes(txs, function(tx) {
return tx.type.indexOf('93') > -1;
self.bitpayCardTransactionHistoryPreAuth = lodash.filter(txs, function(tx) {
return tx.pending && tx.type.indexOf('93') > -1;
});
lodash.forEach(self.bitpayCardTransactionHistoryConfirming, function(tx) {