From 8d86d6208ca29b04b90b640b2efcff42e6dfe1a5 Mon Sep 17 00:00:00 2001 From: igorrCarvalho Date: Tue, 16 Jan 2024 16:16:06 -0300 Subject: [PATCH] Fix: Input list doesnt show up when template value are empty --- src/frontend/src/components/inputListComponent/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/src/components/inputListComponent/index.tsx b/src/frontend/src/components/inputListComponent/index.tsx index e98bba304..b82d37f63 100644 --- a/src/frontend/src/components/inputListComponent/index.tsx +++ b/src/frontend/src/components/inputListComponent/index.tsx @@ -23,6 +23,8 @@ export default function InputListComponent({ value = [value]; } + if (!value.length) value = [""]; + return (