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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- 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)

## [4.11.3] - 2026-02-19

Expand Down
3 changes: 2 additions & 1 deletion packages/web/src/app/[domain]/components/topBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { LogIn } from "lucide-react";
import { useRouter } from "next/navigation";
import { AppearanceDropdownMenu } from "./appearanceDropdownMenu";
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip";
import { cn } from "@/lib/utils";

interface TopBarProps {
domain: string;
Expand Down Expand Up @@ -58,7 +59,7 @@ export const TopBar = ({
{centerContent}
</div>
)}
<div className="flex-1 flex flex-row justify-end items-center gap-2">
<div className={cn("flex flex-row justify-end items-center gap-2", centerContent ? "flex-1" : "shrink-0")}>
{actions}
{session ? (
<MeControlDropdownMenu
Expand Down