You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following this change, sentry is picking up a few errors: Cannot read properties of undefined (reading 'focus' / 'blur')
This looks like it 's trying to call functions on the component when it isn't mounted.
After a bit more investigation, this is a full blown bug as the mousedown event is trying to access the dropdown even when the component is disabled, and hence not rendered.
Steps to Reproduce
disable a simpleSelect
click around on it
an exception it thrown
Expected Behavior
no exception should be thrown
The text was updated successfully, but these errors were encountered:
Describe the Bug
Following this change, sentry is picking up a few errors:
Cannot read properties of undefined (reading 'focus' / 'blur')
This looks like it 's trying to call functions on the component when it isn't mounted.
After a bit more investigation, this is a full blown bug as the mousedown event is trying to access the dropdown even when the component is disabled, and hence not rendered.
Steps to Reproduce
Expected Behavior
The text was updated successfully, but these errors were encountered: