C-APDU Parser: remove tree border lines, keep indentation only

This commit is contained in:
2026-08-20 23:22:52 +03:00
parent b832372ac8
commit 0857c5f68b
+1 -1
View File
@@ -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) {