Improve tx UI

feature/default_network_editable
Dan Finlay 9 years ago
parent e6c4d63ccd
commit 46e100f595
  1. 2
      CHANGELOG.md
  2. 7
      ui/app/components/pending-msg.js
  3. 7
      ui/app/components/pending-tx.js
  4. 4
      ui/app/conf-tx.js

@ -2,6 +2,8 @@
## Current Master
- Add support for calls to `eth.sign`.
## 1.7.0 2016-04-29
- Account detail view is now the primary view.

@ -30,6 +30,13 @@ PendingMsg.prototype.render = function() {
key: msgData.id,
}, [
h('h3', {
style: {
fontWeight: 'bold',
textAlign: 'center',
}
}, 'Sign Message'),
// account that will sign
h(AccountPanel, {
showFullAddress: true,

@ -30,6 +30,13 @@ PendingTx.prototype.render = function() {
key: txData.id,
}, [
h('h3', {
style: {
fontWeight: 'bold',
textAlign: 'center',
}
}, 'Submit Transaction'),
// account that will sign
h(AccountPanel, {
showFullAddress: true,

@ -49,7 +49,7 @@ ConfirmTxScreen.prototype.render = function() {
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: this.goHome.bind(this),
}),
h('h2.page-subtitle', 'Confirm Transaction'),
h('h2.page-subtitle', 'Confirmation'),
]),
h('h3', {
@ -64,7 +64,7 @@ ConfirmTxScreen.prototype.render = function() {
},
onClick: () => state.dispatch(actions.previousTx()),
}),
` Transaction ${state.index + 1} of ${unconfTxList.length} `,
` ${state.index + 1} of ${unconfTxList.length} `,
h('i.fa.fa-arrow-right.fa-lg.cursor-pointer', {
style: {
display: state.index + 1 === unconfTxList.length ? 'none' : 'inline-block',

Loading…
Cancel
Save