diff --git a/webapp/src/components/AppShell.tsx b/webapp/src/components/AppShell.tsx index b823506b..7d94f866 100644 --- a/webapp/src/components/AppShell.tsx +++ b/webapp/src/components/AppShell.tsx @@ -13,8 +13,8 @@ export function AppShell({ brand, toolbar, filters, rail, children }: AppShellPr const [railOpen, setRailOpen] = useState(true); return ( -
-
+
+
-
{toolbar}
+
+ {toolbar} +
{filters ? ( // Fixed height so the bar doesn't jump when pills replace the "No filters" text. -
+
{filters}
) : null} -
-
);