split delimiter fix

This commit is contained in:
Victor Baranov 2018-09-28 18:18:19 +03:00
parent a297e0d9dd
commit 555c2fc23c
2 changed files with 2 additions and 2 deletions

View File

@ -321,7 +321,7 @@ SendTransactionScreen.prototype.onSubmit = async function () {
const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '')
const nickname = state.nickname || ' '
const input = document.querySelector('input[name="amount"]').value
const parts = input.split('')
const parts = input.split('.')
let message

View File

@ -260,7 +260,7 @@ SendTransactionScreen.prototype.onSubmit = function () {
const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '')
const nickname = state.nickname || ' '
const input = document.querySelector('input[name="amount"]').value
const parts = input.split('')
const parts = input.split('.')
let message