From 23d52b41f2721d06ae29a4a6977a182ff3862278 Mon Sep 17 00:00:00 2001 From: c3024 Date: Tue, 3 Oct 2023 21:33:43 +0530 Subject: [PATCH] allow pasting amount ending with comma --- src/libs/MoneyRequestUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/MoneyRequestUtils.ts b/src/libs/MoneyRequestUtils.ts index c41fe73947d1..394ad1aeeae4 100644 --- a/src/libs/MoneyRequestUtils.ts +++ b/src/libs/MoneyRequestUtils.ts @@ -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); }