Different URL tree state encoding

This commit is contained in:
2026-07-11 22:51:01 -05:00
parent 291b6028f5
commit af325782a8
5 changed files with 1123 additions and 12 deletions
+2 -2
View File
@@ -21,9 +21,9 @@ function refreshIssuesForCurrentSelection() {
function loadProductTree() {
fetch('data/products.json')
.then(response => response.json())
.then(data => {
.then(async data => {
productsData = expandFilePrefixLevel(data);
renderProductTree(productsData);
await renderProductTree(productsData);
restoreTreeState();
refreshIssuesForCurrentSelection();
})