fix open sent tx modal

This commit is contained in:
Javier 2016-09-21 12:26:44 -03:00
parent 5527cccc38
commit 6b01f0da52
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ angular.module('copayApp.controllers').controller('activityController',
};
$scope.openNotificationModal = function(n) {
if (!n.txpId && n.txid) {
if (n.txid) {
openTxModal(n);
} else {
var txp = lodash.find($scope.txps, {

View File

@ -17,7 +17,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
});
$scope.openNotificationModal = function(n) {
if (!n.txpId && n.txid) {
if (n.txid) {
openTxModal(n);
} else {
var txp = lodash.find($scope.txps, {