Skip to content

Commit

Permalink
allow pasting amount ending with comma
Browse files Browse the repository at this point in the history
  • Loading branch information
c3024 committed Oct 3, 2023
1 parent be98ca2 commit 23d52b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/MoneyRequestUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ function calculateAmountLength(amount: string): number {
function validateAmount(amount: string, decimals: number): boolean {
const regexString =
decimals === 0
? `^\\d+(,\\d+)*$` // Don't allow decimal point if decimals === 0
: `^\\d+(,\\d+)*(\\.\\d{0,${decimals}})?$`; // Allow the decimal point and the desired number of digits after the point
? `^\\d+(,\\d*)*$` // Don't allow decimal point if decimals === 0
: `^\\d+(,\\d*)*(\\.\\d{0,${decimals}})?$`; // Allow the decimal point and the desired number of digits after the point
const decimalNumberRegex = new RegExp(regexString, 'i');
return amount === '' || (decimalNumberRegex.test(amount) && calculateAmountLength(amount) <= CONST.IOU.AMOUNT_MAX_LENGTH);
}
Expand Down

0 comments on commit 23d52b4

Please sign in to comment.