KeyIn결제 필터 추가 , range-amount 입력 type : number 변경

This commit is contained in:
HyeonJongKim
2025-09-15 11:24:11 +09:00
parent 42a3892e30
commit 8c918d50dd
8 changed files with 211 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ export const FilterRangeAmount = ({
<div className="opt-controls">
<div className="input-wrapper ">
<input
type="text"
type="number"
placeholder=""
value={ minAmount }
onChange={ (e: ChangeEvent<HTMLInputElement>) => setMinAmount(e.target.value) }
@@ -31,7 +31,7 @@ export const FilterRangeAmount = ({
<span> ~ </span>
<div className="input-wrapper date">
<input
type="text"
type="number"
placeholder=""
value={ maxAmount }
onChange={ (e: ChangeEvent<HTMLInputElement>) => setMaxAmount(e.target.value) }