diff --git a/CHANGELOG.md b/CHANGELOG.md index 313632b24..15f0c2065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- Fixed Ask view layout becoming unusable in narrow/split window mode by reducing panel minimum sizes to allow better resizing. [#1107](https://github.com/sourcebot-dev/sourcebot/pull/1107) + ## [4.16.8] - 2026-04-09 ### Added diff --git a/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx b/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx index f84abe97b..d1de7ef07 100644 --- a/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx +++ b/packages/web/src/features/chat/components/chatThread/chatThreadListItem.tsx @@ -319,8 +319,8 @@ const ChatThreadListItemComponent = forwardRef { return currentDistance < nearestDistance ? current : nearest; }); -} \ No newline at end of file +}