diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 14:11:47 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 14:11:47 +0800 |
commit | 6d3f261b2f923782279be5e2ce05e8d6cc558a9e (patch) | |
tree | b787d0fb808b1ba04bfb0687ad655a54ca707040 /ui/app/components | |
parent | 8895a225dc3e69a5baab66ad93bd54b7d5e6c82c (diff) | |
download | tangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.tar.gz tangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.tar.zst tangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.zip |
Change LOOSE label to IMPORTED
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/account-menu/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/account-menu/index.js b/ui/app/components/account-menu/index.js index 85bd21076..32e7bc466 100644 --- a/ui/app/components/account-menu/index.js +++ b/ui/app/components/account-menu/index.js @@ -148,6 +148,6 @@ AccountMenu.prototype.indicateIfLoose = function (keyring) { try { // Sometimes keyrings aren't loaded yet: const type = keyring.type const isLoose = type !== 'HD Key Tree' - return isLoose ? h('.keyring-label', 'LOOSE') : null + return isLoose ? h('.keyring-label', 'IMPORTED') : null } catch (e) { return } } |