Skip to content

Commit

Permalink
Merge pull request #28736 from c3024/28548-allow-pasting-numbers-endi…
Browse files Browse the repository at this point in the history
…ng-with-comma

fix: 28548
  • Loading branch information
luacmartins authored Oct 4, 2023
2 parents ab821e5 + 23d52b4 commit a7f070a
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 a7f070a

Please sign in to comment.