diff --git a/apps/yaak-proxy/Sidebar.tsx b/apps/yaak-proxy/Sidebar.tsx index da9852a4..59340684 100644 --- a/apps/yaak-proxy/Sidebar.tsx +++ b/apps/yaak-proxy/Sidebar.tsx @@ -81,6 +81,7 @@ function buildTree(exchanges: HttpExchange[]): TreeNode { parent: null, depth: 0, children: [], + draggable: false, }; // Intermediate trie structure for building @@ -153,6 +154,7 @@ function buildTree(exchanges: HttpExchange[]): TreeNode { parent, depth, children: [], + draggable: false, }; for (const child of trie.children.values()) { node.children!.push(toTreeNode(child, node, depth + 1)); @@ -167,6 +169,7 @@ function buildTree(exchanges: HttpExchange[]): TreeNode { parent: rootNode, depth: 1, children: [], + draggable: false, }; const sortedDomains = [...domainMap.values()].sort((a, b) => diff --git a/apps/yaak-proxy/main.tsx b/apps/yaak-proxy/main.tsx index 21713d1f..77f8490b 100644 --- a/apps/yaak-proxy/main.tsx +++ b/apps/yaak-proxy/main.tsx @@ -104,14 +104,14 @@ function App() { Method URL Status - Content-Type + Type {exchanges.map((ex) => ( - {ex.method} - + {ex.method} + {ex.url}