diff --git a/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx b/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx index a475aafa1..37dc13b4b 100644 --- a/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx +++ b/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx @@ -138,7 +138,7 @@ const getInputClassName = ( "disabled:text-muted disabled:opacity-100 placeholder:disabled:text-muted-foreground", password && "text-clip pr-14", blockAddNewGlobalVariable && "text-clip pr-8", - selectedOptions?.length >= 0 && "cursor-default", + selectedOptions?.length > 0 && "cursor-default", ); };