add "list" to step expansion modes

When you select LIST mode: applyModeSteps("list", showUtils) is called - Groups expand because: mode !== "collapsed" → "list" !== "collapsed" ✓ - Steps stay collapsed because: mode === "expanded" → "list" === "expanded" ✗ - During streaming, steps don't auto-expand because the condition checks for detailMode === "current", which is false. This is why we only need one line for this new modality to work.

3clyp50 committed Jan 29, 2026 at 20:00 UTC 042f2d13930383dda12cab486e04480354e1b077
1 file changed +1
webui/components/sidebar/bottom/preferences/preferences-store.js
+1
@@ -73,6 +73,7 @@ const model = {
73 // Detail mode options for UI sidebar
74 detailModeOptions: [
75 { label: "NONE", value: "collapsed", title: "All collapsed" },
76 + { label: "LIST", value: "list", title: "Steps collapsed" },
77 { label: "STEP", value: "current", title: "Current step only" },
78 { label: "ALL", value: "expanded", title: "All expanded" },
79 ],