aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/first-time
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-09-11 02:23:11 +0800
committerDan Finlay <dan@danfinlay.com>2016-09-11 02:23:11 +0800
commit6d6130e2a6d79a29d67995cbf4fa22ea4870ef69 (patch)
treed12ffa3014e28fde0004f2886f24e4b30f3310b2 /ui/app/first-time
parent03168c6b91f024d928c426868facc556f3ba427c (diff)
downloadtangerine-wallet-browser-6d6130e2a6d79a29d67995cbf4fa22ea4870ef69.tar.gz
tangerine-wallet-browser-6d6130e2a6d79a29d67995cbf4fa22ea4870ef69.tar.zst
tangerine-wallet-browser-6d6130e2a6d79a29d67995cbf4fa22ea4870ef69.zip
Camelcase dataset key for react
Diffstat (limited to 'ui/app/first-time')
-rw-r--r--ui/app/first-time/restore-vault.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/first-time/restore-vault.js b/ui/app/first-time/restore-vault.js
index 4c1f21008..c34cd7e66 100644
--- a/ui/app/first-time/restore-vault.js
+++ b/ui/app/first-time/restore-vault.js
@@ -41,7 +41,7 @@ RestoreVaultScreen.prototype.render = function () {
// wallet seed entry
h('h3', 'Wallet Seed'),
h('textarea.twelve-word-phrase.letter-spacey', {
- dataset: {
+ dataSet: {
persistentFormId: 'wallet-seed',
},
placeholder: 'Enter your secret twelve word phrase here to restore your vault.',
@@ -52,7 +52,7 @@ RestoreVaultScreen.prototype.render = function () {
type: 'password',
id: 'password-box',
placeholder: 'New Password (min 8 chars)',
- dataset: {
+ dataSet: {
persistentFormId: 'password',
},
style: {
@@ -67,7 +67,7 @@ RestoreVaultScreen.prototype.render = function () {
id: 'password-box-confirm',
placeholder: 'Confirm Password',
onKeyPress: this.onMaybeCreate.bind(this),
- dataset: {
+ dataSet: {
persistentFormId: 'password-confirmation',
},
style: {