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
On mobile clicking on the react-select component the keyboard is opened and the component itself is being moved to the upper side of the screen avoiding to be hidden by the keyboard. In these cases the menu is not positioned on the right place. See the screenshot:
"react-select": "^5.9.0",
On mobile clicking on the react-select component the keyboard is opened and the component itself is being moved to the upper side of the screen avoiding to be hidden by the keyboard. In these cases the menu is not positioned on the right place. See the screenshot:
Here the component implementation:
<div className="relative"> {React.createElement<SelectProps<any>>( Select, { isMulti: false, menuPortalTarget: isServer() ? null : document.body, menuPosition: 'fixed', menuPlacement: 'auto', ...props, }, )} </div>
The text was updated successfully, but these errors were encountered: