diff options
Diffstat (limited to 'ui/app/conf-tx.js')
| -rw-r--r-- | ui/app/conf-tx.js | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js index 8d8285f3d..8e255a867 100644 --- a/ui/app/conf-tx.js +++ b/ui/app/conf-tx.js @@ -43,9 +43,11 @@ ConfirmTxScreen.prototype.render = function () {    var unconfMsgs = state.unconfMsgs    var unconfTxList = txHelper(unconfTxs, unconfMsgs, network)    var index = state.index !== undefined ? state.index : 0 -  var txData = unconfTxList[index] || {txParams: {}} -  var txParams = txData.txParams || {} +  var txData = unconfTxList[index] || {} +  var txParams = txData.txParams    var isNotification = isPopupOrNotification() === 'notification' +  if (!txParams) return null +    return (      h('.flex-column.flex-grow', [ | 
