JedWatson / react-select

The Select Component for React.js
https://react-select.com/
MIT License
27.49k stars 4.12k forks source link

menuPortalTarget add event on click on while document #5709

Open dmitriyn3679 opened 1 year ago

dmitriyn3679 commented 1 year ago

I have next config <Select // isLoading={true} ref={ref} className="mobile-listitemselect" classNamePrefix="mobile-listitemselect" isSearchable={false} options={prices} placeholder={""} menuPlacement="auto" onChange={handlerSelect} components={{ DropdownIndicator }} menuPortalTarget={document.querySelector("body")} />

but when i first time open select, it add event on click to whole doc, and after close menu this click not destroyed. If I remove menuPortalTarget, event not adding, but i use it for lift up menu. How I can fix this?