Skip to content
Merged
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 @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed `og:image` URL resolving to `localhost` instead of the public domain when the app is deployed behind a reverse proxy. [#908](https://github.com/sourcebot-dev/sourcebot/pull/908)
- Fixed search bar not taking the full width on the search results and browse pages. [#909](https://github.com/sourcebot-dev/sourcebot/pull/909)

### Changed
- Changed the "Open in" button copy to distinguish between Bitbucket serve & cloud. [#910](https://github.com/sourcebot-dev/sourcebot/pull/910)

## [4.11.3] - 2026-02-19

### Fixed
Expand Down
1 change: 0 additions & 1 deletion packages/web/src/app/[domain]/repos/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ export default async function RepoDetailPage({ params }: { params: Promise<{ id:
<div className="flex items-start justify-between">
<div>
<h1 className="text-3xl font-semibold">{repo.displayName || repo.name}</h1>
<p className="text-muted-foreground mt-2">{repo.name}</p>
</div>
{codeHostInfo.externalWebUrl && (
<Button variant="outline" asChild>
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const getCodeHostInfoForRepo = (repo: {
return {
type: "bitbucketServer",
displayName: displayName ?? name,
codeHostName: "Bitbucket",
codeHostName: "Bitbucket Server",
externalWebUrl,
icon: src,
iconClassName: className,
Expand All @@ -250,7 +250,7 @@ export const getCodeHostInfoForRepo = (repo: {
return {
type: "bitbucketCloud",
displayName: displayName ?? name,
codeHostName: "Bitbucket",
codeHostName: "Bitbucket Cloud",
externalWebUrl,
icon: src,
iconClassName: className,
Expand Down