Fix missing label

This commit is contained in:
2026-06-16 17:49:34 +02:00
parent db17f94627
commit 1619240905
+1
View File
@@ -194,6 +194,7 @@
var rootChev = document.createElement('span'); var rootChev = document.createElement('span');
rootChev.className = 'tree-chevron is-leaf'; rootChev.className = 'tree-chevron is-leaf';
rootRow.appendChild(rootChev); rootRow.appendChild(rootChev);
var rootLabel = document.createElement('span');
rootLabel.className = 'tree-name'; rootLabel.className = 'tree-name';
rootLabel.textContent = '/'; rootLabel.textContent = '/';
rootRow.appendChild(rootLabel); rootRow.appendChild(rootLabel);