Fix back button hiding on popup

feature/default_network_editable
Dan Finlay 8 years ago
parent 75fd650f69
commit a9b53530b6
  1. 3
      ui/app/conf-tx.js

@ -5,6 +5,7 @@ const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('./actions')
const txHelper = require('../lib/tx-helper')
const isPopupOrNotification = require('../../app/scripts/lib/is-popup-or-notification')
const PendingTx = require('./components/pending-tx')
const PendingMsg = require('./components/pending-msg')
@ -36,7 +37,7 @@ ConfirmTxScreen.prototype.render = function () {
var unconfTxList = txHelper(unconfTxs, unconfMsgs)
var index = state.index !== undefined ? state.index : 0
var txData = unconfTxList[index] || {}
var isNotification = window.METAMASK_UI_TYPE === 'notification'
var isNotification = isPopupOrNotification() === 'notification'
return (

Loading…
Cancel
Save