Skip to content

Commit 7255033

Browse files
fix SOU-569
1 parent 1204343 commit 7255033

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Added `find_symbol_definitions`, and `find_symbol_references` tools to the MCP server. [#1014](https://github.com/sourcebot-dev/sourcebot/pull/1014)
1212
- Added `list_tree` tool to the ask agent. [#1014](https://github.com/sourcebot-dev/sourcebot/pull/1014)
1313

14+
### Fixed
15+
- Fixed issue where ask responses would sometimes appear in the details panel while generating. [#1014](https://github.com/sourcebot-dev/sourcebot/pull/1014)
16+
1417
## [4.15.9] - 2026-03-17
1518

1619
### Added

packages/web/src/features/chat/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ export const getAnswerPartFromAssistantMessage = (message: SBChatMessage, isStre
338338
const lastTextPart = message.parts
339339
.findLast((part) => part.type === 'text')
340340

341-
if (lastTextPart?.text.startsWith(ANSWER_TAG)) {
341+
if (lastTextPart?.text.includes(ANSWER_TAG)) {
342342
return lastTextPart;
343343
}
344344

0 commit comments

Comments
 (0)