feat: final fixes and chores

This commit is contained in:
2026-08-19 17:44:53 +09:30
parent 835620fd67
commit c2ddd67021
8 changed files with 119 additions and 15 deletions
+2 -2
View File
@@ -128,8 +128,8 @@ function onCustomSidebarCaptureClick(event: MouseEvent) {
}
const key = li.dataset.key;
if (!key) return;
const item = sidebarState.findByKey(key);
const path = li.dataset.path;
const item = sidebarState.resolveItem(key, path);
if (item) sidebarState.activateItem(item, menuEl);
}