fix: set cursor to text in text fields (#8173)

Fixed cursor being default in input fields
This commit is contained in:
Lucas Oliveira 2025-05-22 14:12:57 -03:00 committed by GitHub
commit cf98f2e55d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",
);
};