fix: set cursor to text in text fields (#8173)
Fixed cursor being default in input fields
This commit is contained in:
parent
58e68fca9c
commit
cf98f2e55d
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue