not found message
This commit is contained in:
parent
b146d40539
commit
e71b7ae963
2 changed files with 8 additions and 0 deletions
|
|
@ -32,6 +32,10 @@ angular.module('copayApp.controllers').controller('activityController',
|
||||||
id: n.txpId
|
id: n.txpId
|
||||||
});
|
});
|
||||||
if (txp) txpModalService.open(txp);
|
if (txp) txpModalService.open(txp);
|
||||||
|
else {
|
||||||
|
$log.warn('No txp found');
|
||||||
|
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,10 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
||||||
id: n.txpId
|
id: n.txpId
|
||||||
});
|
});
|
||||||
if (txp) txpModalService.open(txp);
|
if (txp) txpModalService.open(txp);
|
||||||
|
else {
|
||||||
|
$log.warn('No txp found');
|
||||||
|
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue