mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
Fix not accepting "," in some currencies
This commit is contained in:
parent
b25cb527cb
commit
0e4c9bb138
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ abstract class OutputBase with Store {
|
||||||
sendAll = false;
|
sendAll = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
cryptoAmount = amount;
|
cryptoAmount = amount.replaceAll(',', '.');
|
||||||
_updateFiatAmount();
|
_updateFiatAmount();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue