-
I'm following the example here: https://mantine.dev/core/select/
The problem is, the chevron icon for the dropdown becomes non-clickable. How do you manually open or close the dropdown when the |
Beta Was this translation helpful? Give feedback.
Answered by
rtivital
Nov 5, 2021
Replies: 1 comment 3 replies
-
You will need to remove pointer events from right section, to do so use Styles API: <Select styles={{ rightSection: { pointerEvents: 'none' } }} /> This is applicable to any Mantine input with right section |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
anton-bot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You will need to remove pointer events from right section, to do so use Styles API:
This is applicable to any Mantine input with right section