ComfyUI_frontend
ComfyUI_frontend copied to clipboard
v1.33.8 Templates doesn't have a scroll bar
Makes it basically impossible to decifer where exactly in the list you currently are
ComfyUI Frontend Version
v1.33.8
Browser
Chrome/Chromium
┆Issue is synchronized with this Notion page by Unito
The scrollbar in the Templates panel is intentionally hidden by CSS (scrollbar-hide), so scrolling works but the scrollbar isn't visible—this is a design choice, not a bug. This can make it hard to navigate long lists, especially if you want to see your position in the list. You can work around this by overriding the CSS in your browser or with a user stylesheet extension. For example, to force scrollbars to show, you can add:
/* Show scrollbars in ComfyUI panels */
.scrollbar-hide {
scrollbar-width: auto !important; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
width: 8px !important;
}
.scrollbar-hide::-webkit-scrollbar-thumb {
background-color: #bbb !important;
}
The crash you’re seeing is likely unrelated to the missing scrollbar and is a known Chrome/Chromium frontend regression, especially with large lists or certain browser extensions—even if disabled. Workarounds include fully disabling all extensions, clearing cache, resetting Chrome font size, or trying Firefox/Edge. There’s no universal fix yet for these Chrome-specific crashes in recent versions [source].
Let me know if you want more technical details for a local fix to always show scrollbars by default.
To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other