material-ui-nested-menu-item icon indicating copy to clipboard operation
material-ui-nested-menu-item copied to clipboard

Scrollbar Broken on Chrome

Open gerstej9 opened this issue 2 years ago • 2 comments

I've seen some similar issues on stack overflow but I am trying to utilize the NestedMenuItem and it appears to work well but on the breakout dropdown menu the scroll is broken on Chrome but works on Firefox.

                                    id={`navigation-menu-${option.optionDisplayValue}`}
                                    label={option.optionDisplayValue}
                                    parentMenuOpen={isMenuOpen}
                                    onClick={handleClose(option)}
                                >
                                    {option.subOptions &&
                                        option.subOptions.map((subOption) => (
                                            <MenuItem
                                                key={`navigation-menu-${option.optionDisplayValue}-${subOption.optionDisplayValue}`}
                                                onClick={handleClose(subOption)}
                                            >
                                                {subOption.optionDisplayValue}
                                            </MenuItem>
                                        ))}
                                </NestedMenuItem>```

Here is an example of the code. Any suggestions or advice you can give would be greatly appreciated! Thank you

gerstej9 avatar Jul 05 '22 20:07 gerstej9

same issues

leonidkuznetsov18 avatar Jul 25 '22 16:07 leonidkuznetsov18

any updates about scroll issues ?!

WalidTouil avatar Nov 03 '22 17:11 WalidTouil