Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Steinberger
d1ef5571b6 fix: allow settings scroll on Windows (#1780) (thanks @robbyczgw-cla) 2026-01-25 11:33:38 +00:00
Robby
97501eaaca fix: enable scrolling in settings page on Windows
Fixes #1743

The settings page was unable to scroll because .config-layout has
overflow:hidden which blocks child scrolling. Added min-height:0 and
overflow-y:auto to .config-main to enable scrolling within the grid
layout.
2026-01-25 11:26:52 +00:00
2 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,7 @@ Docs: https://docs.clawd.bot
- Web UI: hide internal `message_id` hints in chat bubbles.
- Web UI: show Stop button during active runs, swap back to New session when idle. (#1664) Thanks @ndbroadbent.
- Web UI: clear stale disconnect banners on reconnect; allow form saves with unsupported schema paths but block missing schema. (#1707) Thanks @Glucksberg.
- Web UI: enable settings page scrolling on Windows. (#1780) Thanks @robbyczgw-cla.
- Heartbeat: normalize target identifiers for consistent routing.
- TUI: reload history after gateway reconnect to restore session state. (#1663)
- Telegram: use wrapped fetch for long-polling on Node to normalize AbortSignal handling. (#1639)

View File

@ -242,8 +242,10 @@
.config-main {
display: flex;
flex-direction: column;
min-height: 0;
min-width: 0;
background: var(--panel);
overflow-y: auto;
}
/* Actions Bar */