Merge branch 'master' into i328-MultiVault

feature/default_network_editable
kumavis 8 years ago committed by GitHub
commit c664b8f11e
  1. 2
      ui/app/components/pending-tx.js
  2. 6
      ui/app/conf-tx.js

@ -31,7 +31,7 @@ PendingTx.prototype.render = function () {
`), `),
txData.simulationFails ? txData.simulationFails ?
h('span.error', { h('.error', {
style: { style: {
marginLeft: 50, marginLeft: 50,
fontSize: '0.9em', fontSize: '0.9em',

@ -170,6 +170,10 @@ function warningIfExists (warning) {
if (warning && if (warning &&
// Do not display user rejections on this screen: // Do not display user rejections on this screen:
warning.indexOf('User denied transaction signature') === -1) { warning.indexOf('User denied transaction signature') === -1) {
return h('span.error', { style: { margin: 'auto' } }, warning) return h('.error', {
style: {
margin: 'auto',
},
}, warning)
} }
} }

Loading…
Cancel
Save