LazeMSS / OctoPrint-UICustomizer

UI Customizer for octoprint
165 stars 18 forks source link

0.1.8.1 update - menu shows only 4 items #227

Closed cicinovec closed 2 years ago

cicinovec commented 2 years ago

After update to latest 0.1.8.1, the menu show only 4 items and the scroll bar has appeared, even on big screen when not necessary menu2 menu1

Tested in Chrome and Firefox

MrRexRuthless commented 2 years ago

Same problem here two different installations.

LazeMSS commented 2 years ago

I'm fixing it today

LazeMSS commented 2 years ago

@Arsolix @cicinovec @MrRexRuthless could you please post a bug report with you settings or maybe a screenshot - i can not recreate it. Maybe just provide browser and os? But mostly what settings are being used.

MrRexRuthless commented 2 years ago

Please let me know if this is not what you need. I'm accessing the PI/OctoPrint from Windows 10 using Edge. It's happening on two different installations of OctoPrint. Here are the logs as well.

octoprint-logs.zip

Here is a screenshot as well

image

image

This is one shot from each installation.

LazeMSS commented 2 years ago

Take a screenshot of the settings screen - and maybe use the "report a bug" button - that way i can see other plugins that might cause problems.

MrRexRuthless commented 2 years ago

image image image image

Done (issue 228)

LazeMSS commented 2 years ago

Thanks

cicinovec commented 2 years ago

Windows 10, Chrome and Firefox, both the same behavior.

Herebelow "report bug" export

Plugins installed

UI Customizer settings

Software versions

Browser

LazeMSS commented 2 years ago

its a bug in Spoolmanager plugin: OllisGit/OctoPrint-SpoolManager#230

Until fixed you can add this to custom css under advanced in UICustomizer:

.dropdown-menu {
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
}

#tab_plugin_SpoolManager .dropdown-menu{
    max-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
}