aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/create-account/connect-hardware/account-list.js
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-08-17 08:41:23 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-08-17 08:41:23 +0800
commit285814646fa147560ffe6a8903eec7220eff09bb (patch)
tree8d7a8fe30792fe8b99dc7ad385cf574a9eb178b6 /ui/app/components/pages/create-account/connect-hardware/account-list.js
parent2ea05e303dedfd75cad6fdfddfa82da2ee32e92d (diff)
downloadtangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar.gz
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar.bz2
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar.lz
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar.xz
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.tar.zst
tangerine-wallet-browser-285814646fa147560ffe6a8903eec7220eff09bb.zip
ui ready
Diffstat (limited to 'ui/app/components/pages/create-account/connect-hardware/account-list.js')
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/account-list.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/account-list.js b/ui/app/components/pages/create-account/connect-hardware/account-list.js
index 0acaded6b..488a189ea 100644
--- a/ui/app/components/pages/create-account/connect-hardware/account-list.js
+++ b/ui/app/components/pages/create-account/connect-hardware/account-list.js
@@ -40,8 +40,9 @@ class AccountList extends Component {
const options = this.getHdPaths()
return h('div', [
+ h('h3.hw-connect__hdPath__title', {}, this.context.t('selectHdPath')),
+ h('p.hw-connect__msg', {}, this.context.t('selectPathHelp')),
h('div.hw-connect__hdPath', [
- h('h3.hw-connect__hdPath__title', {}, `HD Path`),
h(Select, {
className: 'hw-connect__hdPath__select',
name: 'hd-path-select',
@@ -53,18 +54,23 @@ class AccountList extends Component {
},
}),
]),
- h('p.hw-connect__msg', {}, this.context.t('selectPathHelp')),
])
}
+
+ capitalizeDevice (device) {
+ return device.slice(0, 1).toUpperCase() + device.slice(1)
+ }
+
renderHeader () {
const { device } = this.props
return (
h('div.hw-connect', [
- h('h3.hw-connect__title', {}, `${device.toUpperCase()} - ${this.context.t('selectAnAccount')}`),
+ h('h3.hw-connect__unlock-title', {}, `${this.context.t('unlock')} ${this.capitalizeDevice(device)}`),
device.toLowerCase() === 'ledger' ? this.renderHdPathSelector() : null,
+ h('h3.hw-connect__hdPath__title', {}, this.context.t('selectAnAccount')),
h('p.hw-connect__msg', {}, this.context.t('selectAnAccountHelp')),
])
)