Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ const ChatThreadListItemComponent = forwardRef<HTMLDivElement, ChatThreadListIte
>
<ResizablePanel
order={1}
minSize={30}
maxSize={70}
minSize={20}
maxSize={80}
defaultSize={50}
style={{
overflow: 'visible',
Expand Down Expand Up @@ -380,8 +380,8 @@ const ChatThreadListItemComponent = forwardRef<HTMLDivElement, ChatThreadListIte
<AnimatedResizableHandle className='mx-4' />
<ResizablePanel
order={2}
minSize={30}
maxSize={70}
minSize={20}
maxSize={80}
defaultSize={50}
style={{
overflow: 'clip',
Expand Down Expand Up @@ -465,4 +465,4 @@ const getNearestReferenceElement = (referenceElements: Element[]) => {

return currentDistance < nearestDistance ? current : nearest;
});
}
}
Loading