Implement InputTableField
This commit is contained in:
parent
d1dbcab005
commit
4b8e905630
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ const InputTableField = (props: Props) => {
|
||||||
className="Bound"
|
className="Bound"
|
||||||
placeholder={props.placeholder}
|
placeholder={props.placeholder}
|
||||||
type="number"
|
type="number"
|
||||||
value={value ? `${value}` : ''}
|
value={`${value}`}
|
||||||
step={1}
|
step={1}
|
||||||
onChange={onInputChange}
|
onChange={onInputChange}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue