케라바 출폭 수정 시 숫자만 입력 가능하도록 수정

This commit is contained in:
hyojun.choi 2025-01-13 16:15:13 +09:00
parent 6468d24911
commit 9bfd247995

View File

@ -29,7 +29,7 @@ export default function Pattern(props) {
{getMessage('gable.offset')}
</span>
<div className="input-grid mr5" style={{ width: '100px' }}>
<input type="text" className="input-origin block" value={gableOffset} onChange={setGableOffset} />
<input type="text" className="input-origin block" value={gableOffset} onChange={(e) => onlyNumberInputChange(e, setGableOffset)} />
</div>
<span className="thin">mm</span>
</div>