aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/first-time
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2016-09-13 01:34:06 +0800
committerGitHub <noreply@github.com>2016-09-13 01:34:06 +0800
commitc37c050c8a119e4c2de1edea474c3c3d5ad1cf99 (patch)
tree9a4f288759d608b2300dc0245ea898f01d6d9a1b /ui/app/first-time
parentfcc9ca812e557fd5ecc547f5eb597069788d6c00 (diff)
downloadtangerine-wallet-browser-c37c050c8a119e4c2de1edea474c3c3d5ad1cf99.tar.gz
tangerine-wallet-browser-c37c050c8a119e4c2de1edea474c3c3d5ad1cf99.tar.zst
tangerine-wallet-browser-c37c050c8a119e4c2de1edea474c3c3d5ad1cf99.zip
Revert "Add new eth-lightwallet salting to vault."
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 c34cd7e66..4c1f21008 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: {