automatically truncate to two decimals
This commit is contained in:
parent
f4d8de2ac6
commit
96fc536547
1 changed files with 12 additions and 1 deletions
|
@ -314,7 +314,18 @@ function WalletSendTip(props: Props) {
|
|||
}
|
||||
|
||||
function handleCustomPriceChange(event: SyntheticInputEvent<*>) {
|
||||
const tipAmount = parseFloat(event.target.value);
|
||||
let tipAmount = parseFloat(event.target.value);
|
||||
|
||||
// allow maximum two decimalds
|
||||
if (activeTab === TAB_FIAT) {
|
||||
tipAmount = Math.round(tipAmount * 100) / 100;
|
||||
}
|
||||
|
||||
// TODO: add limit to 4 digits
|
||||
// can also do setTipError('Maximum 1000') that way
|
||||
if(tipAmount.length > 5 && tipAmount > 1000){
|
||||
tipAmount.length = 4
|
||||
}
|
||||
|
||||
setCustomTipAmount(tipAmount);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue