From 0857c5f68b91ea6f1e96bae4498ba0544992e3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=A2=D1=80=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=BD?= Date: Thu, 20 Aug 2026 23:22:52 +0300 Subject: [PATCH] C-APDU Parser: remove tree border lines, keep indentation only --- frontend/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index 65c2ac3..7870ef6 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2886,7 +2886,7 @@ function parseHexTree(hex) { function renderTree(node, container) { const div = document.createElement('div'); - div.className = 'ml-3 border-l-2 border-gray-300 dark:border-slate-600 pl-2 mb-1'; + div.className = 'ml-3 mb-1'; const header = document.createElement('div'); header.className = 'flex gap-2 items-start py-0.5 cursor-pointer hover:bg-gray-100 dark:hover:bg-slate-700 rounded'; if (node.children && node.children.length > 0) {