diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2018-11-23 02:39:59 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2018-11-23 02:39:59 +0800 |
commit | 4054b1cb84f566ce22888bb29c9446760c7caba7 (patch) | |
tree | a1582d7ed939f9f402ec3371f2604fcc10e85642 /ui | |
parent | 804b273cec61246f0d23efd461ccd2cc5c64bf22 (diff) | |
download | tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar.gz tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar.bz2 tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar.lz tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar.xz tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.tar.zst tangerine-wallet-browser-4054b1cb84f566ce22888bb29c9446760c7caba7.zip |
Increase Token Symbol length to twelve
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pages/add-token/add-token.component.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pages/add-token/add-token.component.js b/ui/app/components/pages/add-token/add-token.component.js index 3612e676c..82299bf88 100644 --- a/ui/app/components/pages/add-token/add-token.component.js +++ b/ui/app/components/pages/add-token/add-token.component.js @@ -194,8 +194,8 @@ class AddToken extends Component { const symbolLength = customSymbol.length let customSymbolError = null - if (symbolLength <= 0 || symbolLength >= 10) { - customSymbolError = this.context.t('symbolBetweenZeroTen') + if (symbolLength <= 0 || symbolLength >= 12) { + customSymbolError = this.context.t('symbolBetweenZeroTwelve') } this.setState({ customSymbol, customSymbolError }) |