diff --git a/CHANGELOG.md b/CHANGELOG.md index 34d5415d6..9f3a4b21a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/packages/web/src/app/[domain]/components/topBar.tsx b/packages/web/src/app/[domain]/components/topBar.tsx index 403f1ae96..6c3dc2b62 100644 --- a/packages/web/src/app/[domain]/components/topBar.tsx +++ b/packages/web/src/app/[domain]/components/topBar.tsx @@ -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; @@ -58,7 +59,7 @@ export const TopBar = ({ {centerContent} )} -
+
{actions} {session ? (