I am utilizing the react bootstrap dropdown feature, which can be found on this website
Currently, I am facing an issue where my dropdown list overflows vertically when there are many items, making it unresponsive. Here is a picture showing the problem: https://i.sstatic.net/PACrq.jpg I have been trying to add a scroll bar to the list but haven't succeeded. Any assistance would be appreciated.
This is the code snippet I am working with
<DropdownButton
id="dropdown-basic-button"
title={this.props.passenger.seatNumber}
onSelect={(evt) => this.handleSeatSelection(evt)}
variant="info"
>
{this.state.availableSeatNumbers.map((seatNumber) => (
<Dropdown.Item key={seatNumber} eventKey={seatNumber}>
{seatNumber}
</Dropdown.Item>
))}
</DropdownButton>