From 4b8e905630cd177eb139f6063d75b92e8a9cf116 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 18 Mar 2023 06:50:03 -0700 Subject: [PATCH] Implement InputTableField --- components/InputTableField/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/InputTableField/index.tsx b/components/InputTableField/index.tsx index 5295f8a2..c3fd1349 100644 --- a/components/InputTableField/index.tsx +++ b/components/InputTableField/index.tsx @@ -45,7 +45,7 @@ const InputTableField = (props: Props) => { className="Bound" placeholder={props.placeholder} type="number" - value={value ? `${value}` : ''} + value={`${value}`} step={1} onChange={onInputChange} />