aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-03-23 06:43:26 +0800
committerGitHub <noreply@github.com>2017-03-23 06:43:26 +0800
commit76e7d6fbb1fa9b9cdc9c4fc90628ebb09f61d6a0 (patch)
tree0d88ce51c050ce2e3637dbd0961d4bfd1acd09bc
parent2687b8604b0af73e86837153f2ccbf88672ea6ef (diff)
parent5e40ed1ee956b2207b9d84e60939ab2acfb0558a (diff)
downloadtangerine-wallet-browser-76e7d6fbb1fa9b9cdc9c4fc90628ebb09f61d6a0.tar.gz
tangerine-wallet-browser-76e7d6fbb1fa9b9cdc9c4fc90628ebb09f61d6a0.tar.zst
tangerine-wallet-browser-76e7d6fbb1fa9b9cdc9c4fc90628ebb09f61d6a0.zip
Merge branch 'master' into i1237-xmlfix2
-rw-r--r--ui/app/accounts/import/json.js3
-rw-r--r--ui/app/accounts/import/private-key.js3
2 files changed, 2 insertions, 4 deletions
diff --git a/ui/app/accounts/import/json.js b/ui/app/accounts/import/json.js
index 1c2b331d4..5ed31ab0a 100644
--- a/ui/app/accounts/import/json.js
+++ b/ui/app/accounts/import/json.js
@@ -60,7 +60,7 @@ JsonImportSubview.prototype.render = function () {
},
}, 'Import'),
- error ? h('span.warning', error) : null,
+ error ? h('span.error', error) : null,
])
)
}
@@ -95,4 +95,3 @@ JsonImportSubview.prototype.createNewKeychain = function () {
this.props.dispatch(actions.importNewAccount('JSON File', [ fileContents, password ]))
}
-
diff --git a/ui/app/accounts/import/private-key.js b/ui/app/accounts/import/private-key.js
index b139a0374..68ccee58e 100644
--- a/ui/app/accounts/import/private-key.js
+++ b/ui/app/accounts/import/private-key.js
@@ -48,7 +48,7 @@ PrivateKeyImportView.prototype.render = function () {
},
}, 'Import'),
- error ? h('span.warning', error) : null,
+ error ? h('span.error', error) : null,
])
)
}
@@ -65,4 +65,3 @@ PrivateKeyImportView.prototype.createNewKeychain = function () {
const privateKey = input.value
this.props.dispatch(actions.importNewAccount('Private Key', [ privateKey ]))
}
-