fix(web): folder sort

This commit is contained in:
wuzihao051119
2025-06-26 00:21:56 +08:00
parent eca9b56847
commit 4adf5b24f8

View File

@@ -19,6 +19,7 @@
const onclick = (event: MouseEvent) => {
event.preventDefault();
node.children.sort((a, b) => a.value.localeCompare(b.value));
isOpen = !isOpen;
};
</script>