fix check valid decimals code in new ui

feature/default_network_editable
bunoi 6 years ago
parent c824418955
commit f412b19244
  1. 2
      ui/app/components/pages/add-token/add-token.component.js

@ -206,7 +206,7 @@ class AddToken extends Component {
const validDecimals = customDecimals !== null &&
customDecimals !== '' &&
customDecimals >= 0 &&
customDecimals < 36
customDecimals <= 36
let customDecimalsError = null
if (!validDecimals) {

Loading…
Cancel
Save