Skip to content

Commit b99a020

Browse files
chore(web): Distinguish between bitbucket server and cloud in "open in" buttons (#910)
1 parent 08a1f76 commit b99a020

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
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
- 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)
1212
- Fixed search bar not taking the full width on the search results and browse pages. [#909](https://github.com/sourcebot-dev/sourcebot/pull/909)
1313

14+
### Changed
15+
- Changed the "Open in" button copy to distinguish between Bitbucket serve & cloud. [#910](https://github.com/sourcebot-dev/sourcebot/pull/910)
16+
1417
## [4.11.3] - 2026-02-19
1518

1619
### Fixed

packages/web/src/app/[domain]/repos/[id]/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export default async function RepoDetailPage({ params }: { params: Promise<{ id:
6969
<div className="flex items-start justify-between">
7070
<div>
7171
<h1 className="text-3xl font-semibold">{repo.displayName || repo.name}</h1>
72-
<p className="text-muted-foreground mt-2">{repo.name}</p>
7372
</div>
7473
{codeHostInfo.externalWebUrl && (
7574
<Button variant="outline" asChild>

packages/web/src/lib/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export const getCodeHostInfoForRepo = (repo: {
239239
return {
240240
type: "bitbucketServer",
241241
displayName: displayName ?? name,
242-
codeHostName: "Bitbucket",
242+
codeHostName: "Bitbucket Server",
243243
externalWebUrl,
244244
icon: src,
245245
iconClassName: className,
@@ -250,7 +250,7 @@ export const getCodeHostInfoForRepo = (repo: {
250250
return {
251251
type: "bitbucketCloud",
252252
displayName: displayName ?? name,
253-
codeHostName: "Bitbucket",
253+
codeHostName: "Bitbucket Cloud",
254254
externalWebUrl,
255255
icon: src,
256256
iconClassName: className,

0 commit comments

Comments
 (0)