searchbar improvements

This commit is contained in:
2026-03-20 18:12:35 -05:00
parent 5a3cf8cde3
commit 1eca9f147d
3 changed files with 544 additions and 26 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ const NotepadView = lazy(() => import("../views/NotepadView").then(m => ({ defau
import { NotesSidebar } from "./NotesSidebar";
import { Button } from "./ui/button";
import { cn } from "@/lib/utils";
import { FilterBar } from "./FilterBar";
import { TaskSearchPopover } from "./TaskSearchPopover";
interface LayoutProps {
children: JSX.Element;
@@ -212,7 +212,7 @@ export const Layout: Component<LayoutProps> = (props) => {
)}>
<div class={cn(store.isNotepadMode ? "hidden" : "block")}>
<Show when={props.currentView.toLowerCase() !== "settings"}>
<FilterBar />
<TaskSearchPopover />
</Show>
{props.children}
</div>