I am using ant design select in antd Drawer, Upon open select options if I scroll down the select options are still showing in down page . Thank You.
Yes, I had the same problem, I used this method and it worked for me. getPopupContainer
<CBSelectWrapper>
<div id='select'>
<label>{label}</label>
<Select
mode="tags"
style={{ width: '100%' }}
onChange={handleChange}
tokenSeparators={[',']}
getPopupContainer={() => document.getElementById('select')}
>
<Option key={value.id}>{value.title}</Option>
</Select>
</div>
</CBSelectWrapper>