From 09ee7cc8bd8844c74ff3b11d0994b8c0ba2f588e Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Wed, 15 Feb 2023 18:49:35 -0300 Subject: [PATCH] bug fix --- space_flow/src/components/inputComponent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/space_flow/src/components/inputComponent/index.tsx b/space_flow/src/components/inputComponent/index.tsx index cd434a68e..d3f93ecfc 100644 --- a/space_flow/src/components/inputComponent/index.tsx +++ b/space_flow/src/components/inputComponent/index.tsx @@ -7,7 +7,7 @@ export default function Input({title, placeholder, onChange, value}){
0?value:""} + value={(value as string)?.length>0?value:""} type="text" className="block w-full form-input rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm" placeholder={placeholder}