better proposal styling and fix confirming status on wallet master view

This commit is contained in:
Marty Alcala 2016-11-07 15:32:28 -05:00
commit 610d42caae
3 changed files with 4 additions and 20 deletions

View file

@ -196,7 +196,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
}
$scope.isUnconfirmed = function(tx) {
return !tx.time && (!tx.confirmations || tx.confirmations === 0);
return !tx.confirmations || tx.confirmations === 0;
};
$scope.showMore = function() {