fix open sent tx modal
This commit is contained in:
parent
5527cccc38
commit
6b01f0da52
2 changed files with 2 additions and 2 deletions
|
|
@ -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, {
|
||||
|
|
|
|||
|
|
@ -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, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue