fix: use sq2 display func

This commit is contained in:
reschan 2021-10-18 16:38:37 +07:00
parent 93f73db9b2
commit 5c0dbcb5bc

View file

@ -131,7 +131,7 @@ function displayItems(items_copy) {
box.classList.add("box"); box.classList.add("box");
box.id = "item"+i; box.id = "item"+i;
items_parent.appendChild(box); items_parent.appendChild(box);
displayExpandedItem(item, box.id); displaysq2ExpandedItem(item, box.id);
} }
} }