diff options
author | Frankie <frankie.pangilinan@consensys.net> | 2016-10-11 09:18:07 +0800 |
---|---|---|
committer | Frankie <frankie.pangilinan@consensys.net> | 2016-10-11 09:18:07 +0800 |
commit | 3a610f2c06b6222e97c90a2662830ce6768d877f (patch) | |
tree | 4da2f1a15731a27a27b4da0b579006e3d4e4138f /ui | |
parent | e1b78da3e6b45037f8b9dacc4385c02c6c892f7c (diff) | |
parent | 0182f8a4e91b8a9b0951967d2c075955bfb4f24f (diff) | |
download | tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar.gz tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar.bz2 tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar.lz tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar.xz tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.tar.zst tangerine-wallet-browser-3a610f2c06b6222e97c90a2662830ce6768d877f.zip |
Merge branch 'master' into i#495CustomGasField
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/account-export.js | 9 | ||||
-rw-r--r-- | ui/app/first-time/create-vault-complete.js | 1 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ui/app/components/account-export.js b/ui/app/components/account-export.js index f36b9faeb..6d8b099a5 100644 --- a/ui/app/components/account-export.js +++ b/ui/app/components/account-export.js @@ -3,6 +3,7 @@ const h = require('react-hyperscript') const inherits = require('util').inherits const copyToClipboard = require('copy-to-clipboard') const actions = require('../actions') +const ethUtil = require('ethereumjs-util') module.exports = ExportAccountView @@ -61,7 +62,9 @@ ExportAccountView.prototype.render = function () { if (accountExported) { return h('div.privateKey', { - + style: { + margin: '0 20px', + }, }, [ h('label', 'Your private key (click to copy):'), h('p.error.cursor-pointer', { @@ -72,9 +75,9 @@ ExportAccountView.prototype.render = function () { width: '100%', }, onClick: function (event) { - copyToClipboard(accountDetail.privateKey) + copyToClipboard(ethUtil.stripHexPrefix(accountDetail.privateKey)) }, - }, accountDetail.privateKey), + }, ethUtil.stripHexPrefix(accountDetail.privateKey)), h('button', { onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)), }, 'Done'), diff --git a/ui/app/first-time/create-vault-complete.js b/ui/app/first-time/create-vault-complete.js index 0ca0a1b22..2b5413955 100644 --- a/ui/app/first-time/create-vault-complete.js +++ b/ui/app/first-time/create-vault-complete.js @@ -61,6 +61,7 @@ CreateVaultCompleteScreen.prototype.render = function () { onClick: () => this.confirmSeedWords(), style: { margin: '24px', + fontSize: '0.9em', }, }, 'I\'ve copied it somewhere safe'), ]) |