not found message

This commit is contained in:
Javier 2016-09-21 11:43:40 -03:00
commit e71b7ae963
2 changed files with 8 additions and 0 deletions

View file

@ -32,6 +32,10 @@ angular.module('copayApp.controllers').controller('activityController',
id: n.txpId
});
if (txp) txpModalService.open(txp);
else {
$log.warn('No txp found');
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
}
}
};

View file

@ -24,6 +24,10 @@ angular.module('copayApp.controllers').controller('tabHomeController',
id: n.txpId
});
if (txp) txpModalService.open(txp);
else {
$log.warn('No txp found');
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
}
}
};