diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-02-28 10:36:43 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-02-28 10:36:43 +0800 |
commit | 0e817c9e7fae4c60f0baf52be60fd7489c977b38 (patch) | |
tree | 8fca24096b76f839f789e2c18500461c3e390f04 | |
parent | 3ddfdfff98806065291bb39f31d73879aa4939e8 (diff) | |
download | tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar.gz tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar.bz2 tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar.lz tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar.xz tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.tar.zst tangerine-wallet-browser-0e817c9e7fae4c60f0baf52be60fd7489c977b38.zip |
Reorder rows for better table logic
-rw-r--r-- | ui/app/components/pending-tx-details.js | 69 |
1 files changed, 37 insertions, 32 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index 1e6299902..510ef78e6 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -108,44 +108,18 @@ PTXP.render = function () { h('.table-box', [ + // Ether Value + // Currently not customizable, but easily modified + // in the way that gas and gasLimit currently are. h('.row', [ h('.cell.label', 'Amount'), h(EthBalance, { value: txParams.value }), ]), + // Gas Limit (customizable) h('.cell.row', [ - h('.cell.label', 'Max Transaction Fee'), - h(EthBalance, { value: txFee.toString(16) }), - ]), - - h('.cell.row', { - style: { - fontFamily: 'Montserrat Regular', - background: 'white', - padding: '10px 25px', - }, - }, [ - h('.cell.label', 'Max Total'), - h('.cell.value', { - style: { - display: 'flex', - alignItems: 'center', - }, - }, [ - h(EthBalance, { - value: maxCost.toString(16), - inline: true, - labelColor: 'black', - fontSize: '16px', - }), - ]), - ]), - h('.cell.row', { - - }, [ h('.cell.label', 'Gas Limit'), h('.cell.value', { - }, [ h(HexInput, { value: gas, @@ -161,9 +135,9 @@ PTXP.render = function () { }), ]), ]), - h('.cell.row', { - }, [ + // Gas Price (customizable) + h('.cell.row', [ h('.cell.label', 'Gas Price'), h('.cell.value', { }, [ @@ -181,6 +155,37 @@ PTXP.render = function () { }), ]), ]), + + // Max Transaction Fee (calculated) + h('.cell.row', [ + h('.cell.label', 'Max Transaction Fee'), + h(EthBalance, { value: txFee.toString(16) }), + ]), + + h('.cell.row', { + style: { + fontFamily: 'Montserrat Regular', + background: 'white', + padding: '10px 25px', + }, + }, [ + h('.cell.label', 'Max Total'), + h('.cell.value', { + style: { + display: 'flex', + alignItems: 'center', + }, + }, [ + h(EthBalance, { + value: maxCost.toString(16), + inline: true, + labelColor: 'black', + fontSize: '16px', + }), + ]), + ]), + + // Data size row: h('.cell.row', { style: { background: '#f7f7f7', |