diff --git a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx index a2233070e..156d4984f 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx @@ -248,7 +248,7 @@ export default function ParameterComponent({ }; useEffect(() => { - if (disabledOutput) { + if (disabledOutput && data.node?.outputs![index].hidden) { handleUpdateOutputHide(false); } }, [disabledOutput]);