From 568a1b80ed45fa88a345444a19f5eb4134402522 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 11 Mar 2026 16:00:24 -0700 Subject: [PATCH] Some fixes --- apps/yaak-proxy/Sidebar.tsx | 3 +++ apps/yaak-proxy/main.tsx | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) 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}