Skip to content

Commit e5f5d22

Browse files
s
1 parent d978e6b commit e5f5d22

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
### Changed
2020
- Changed language detection to resolve file extensions with multiple language resolutions (e.g., .md) to the most common resolution. [#1026](https://github.com/sourcebot-dev/sourcebot/pull/1026)
2121
- Changed the `webUrl` property of the `/api/repos` api to return a URL rather than just a path. [#1014](https://github.com/sourcebot-dev/sourcebot/pull/1014)
22+
- Changed the ask search scope selector to allow submitting questions with no search scope selected. When no selection is made, the agent will be able to search over all repos the user has access to. [#1014](https://github.com/sourcebot-dev/sourcebot/pull/1014)
2223

2324
## [4.15.11] - 2026-03-20
2425

packages/web/src/features/chat/components/chatBox/searchScopeSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export const SearchScopeSelector = forwardRef<
232232
className={cn("text-sm text-muted-foreground mx-1 font-medium")}
233233
>
234234
{
235-
selectedSearchScopes.length === 0 ? `All repos` :
235+
selectedSearchScopes.length === 0 ? `All repositories` :
236236
selectedSearchScopes.length === 1 ? selectedSearchScopes[0].name :
237237
`${selectedSearchScopes.length} selected`
238238
}

0 commit comments

Comments
 (0)