-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isClearable CSS issue? #310
Comments
Reopening as this seems to randomly work. The main thing is if I manually remove the pointer events class then everything works as selected. This has only been tested on multi select. |
We add a class to allow pointer events on the clear button. https://github.com/josemarluedke/frontile/blob/main/packages/theme/src/components/forms/forms.ts#L221 Are you by any chance overwriting styles? Also, if you are only seeing this on multi-select, maybe you are clicking with the dropdown open? Which the click would only close the dropdown content, and then another click would be needed to on the clear button to capture that event. ![]() |
We don't have any custom variants on this, but I need to return to it to get an isolated test case. |
With the addition of
@isClearable
to theSelect
component it appears to have apointer-events-none
on it which makes it not clickable. Curious if this is an oversight or intentional. If I remove the class the component works as expected. Happy to open a PR if the class should not be there.The text was updated successfully, but these errors were encountered: