Implement InputTableField

This commit is contained in:
Justin Edmund 2023-03-18 06:50:03 -07:00
parent d1dbcab005
commit 4b8e905630

View file

@ -45,7 +45,7 @@ const InputTableField = (props: Props) => {
className="Bound"
placeholder={props.placeholder}
type="number"
value={value ? `${value}` : ''}
value={`${value}`}
step={1}
onChange={onInputChange}
/>