react-carousel icon indicating copy to clipboard operation
react-carousel copied to clipboard

<select> tag dropdown does not work in the Carousel.

Open lauirvin opened this issue 5 years ago • 1 comments

Describe the bug <select> tag dropdown does not work in the Carousel.

To Reproduce Steps to reproduce the behavior:

<Carousel
  slidesPerPage={1}
  arrows
  infinite
>
  <select>
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
    <option value="3">Option 3</option>
    <option value="4">Option 4</option>
  </select>
</Carousel>

Expected behavior Able to select and see dropdown options.

Current behavior Does not dropdown to view options

lauirvin avatar Feb 26 '20 08:02 lauirvin

@lauirvin

Thanks for reporting. Carousel doesn't work with select because it's mostly designed for images. However, if you know how to fix that, you're more than welcome to open a PR.

piotr-s-brainhub avatar May 03 '20 01:05 piotr-s-brainhub