File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/components/modules/dropdown Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -292,8 +292,7 @@ export default class Select extends React.Component {
292
292
if ( ! multiple ) {
293
293
return null ;
294
294
}
295
-
296
-
295
+
297
296
return React . Children . map ( this . props . children , child => {
298
297
// Process only option or option like childs and if it's selected
299
298
if ( child . props . value && selected . indexOf ( child . props . value ) !== - 1 ) {
@@ -534,7 +533,7 @@ export default class Select extends React.Component {
534
533
< Select . Components . Menu key = "menu"
535
534
onMenuItemClick = { this . onMenuItemClick }
536
535
ref = { ref => this . menuRef = ref }
537
- style = { { overflow : 'hidden' } }
536
+ style = { { overflowX : 'hidden' , overflowY : 'auto ' } }
538
537
>
539
538
{ menuChildrens }
540
539
</ Select . Components . Menu >
You can’t perform that action at this time.
0 commit comments