- 부가서비스 헤더 로그 추가
This commit is contained in:
@@ -172,9 +172,13 @@ export const ArsRequestPage = () => {
|
||||
<div className="billing-field">
|
||||
<NumericFormat
|
||||
value={amount}
|
||||
thousandSeparator={true}
|
||||
allowNegative={false}
|
||||
displayType="input"
|
||||
onChange={(e: ChangeEvent<HTMLInputElement>) => setAmount(parseInt(e.target.value))}
|
||||
onValueChange={(values) => {
|
||||
const { floatValue } = values;
|
||||
setAmount(floatValue ?? 0);
|
||||
}}
|
||||
></NumericFormat>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user