feat(sessions): default filter to current app when entering session page

Navigate directly to the active app's sessions instead of showing all.
This commit is contained in:
Jason
2026-02-21 18:30:56 +08:00
parent 165af5eec4
commit c3f29a62d1
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -724,7 +724,7 @@ function App() {
);
case "sessions":
return <SessionManagerPage />;
return <SessionManagerPage key={activeApp} appId={activeApp} />;
case "workspace":
return <WorkspaceFilesPanel />;
case "openclawEnv":