diff --git a/src/frontend/src/modals/chatModal/index.tsx b/src/frontend/src/modals/chatModal/index.tsx index c6a86daaf..46d62266b 100644 --- a/src/frontend/src/modals/chatModal/index.tsx +++ b/src/frontend/src/modals/chatModal/index.tsx @@ -290,7 +290,9 @@ export default function ChatModal({ errors.concat( template[t].required && template[t].show && - (!template[t].value || template[t].value === "") && + (template[t].value === undefined || + template[t].value === null || + template[t].value === "") && !reactFlowInstance .getEdges() .some(