sersavan / shadcn-multi-select-component

A multi-select component designed with shadcn/ui
https://shadcn-multi-select-component.vercel.app
MIT License
753 stars 31 forks source link

[Bug]: Scrolling does not work #36

Open ksamirdev opened 7 hours ago

ksamirdev commented 7 hours ago

If list is large, the scrolling does not work. I have to use scrollbar to scroll, natural scrolling with touchpad dont work


 <MultiSelect
              modalPopover
              options={new Array(100).fill(1).map((_, i) => ({
                label: i.toString(),
                value: i.toString(),
              }))}
              onValueChange={console.log}
/>
ksamirdev commented 7 hours ago

This multiselect is inside Sheet component