diff --git a/packages/frontend/src/Index.tsx b/packages/frontend/src/Index.tsx index 0c5c242..3b42548 100644 --- a/packages/frontend/src/Index.tsx +++ b/packages/frontend/src/Index.tsx @@ -15,6 +15,7 @@ import { } from "@/components/ui/dropdown-menu"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { getAuthHeaders } from "@/lib/utils"; +import { ResizablePanel, ResizablePanelGroup, ResizableSeparator } from "./components/ui/resizable"; function Index() { const serverURL = import.meta.env.VITE_SERVER_URL?.trim() || "http://localhost:3000"; @@ -211,26 +212,39 @@ function Index() { {/* main body */}
{selectedProject && issues.length > 0 && ( - <> - {/* issues list (table) */} - + + + {/* issues list (table) */} + + + {/* issue detail pane */} {selectedIssue && ( -
- setSelectedIssue(null)} - /> -
+ <> + + +
+ setSelectedIssue(null)} + /> +
+
+ )} - +
)}