From 5bd0b63a7f0cafd53fbd4ba287f8e2cf2b59a4a1 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Sat, 27 Jun 2026 17:23:40 +0900 Subject: feat(sidebar-tabs): add dashboard home button + same-tab workspace open --- src/app/App.svelte | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'src/app/App.svelte') diff --git a/src/app/App.svelte b/src/app/App.svelte index f8e6e5f..5822725 100644 --- a/src/app/App.svelte +++ b/src/app/App.svelte @@ -82,7 +82,7 @@ import { createLocalStore } from "../adapters/local-storage"; import { untrack } from "svelte"; - let { store }: { store: AppStore } = $props(); + let { store, onNavigate }: { store: AppStore; onNavigate: (path: string) => void } = $props(); // The backend's conversation-scoped cache-warming surface. Referenced by id at // the composition root (sanctioned discovery-by-id) to give it a dedicated view @@ -445,6 +445,32 @@ > {topBarTitle} + { + e.preventDefault(); + onNavigate("/"); + }} + > + +