Fix root path handling and release action menus

This commit is contained in:
2026-05-24 17:40:55 +00:00
parent 487e410a8f
commit 94f2f10dcd
10 changed files with 444 additions and 103 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ async function refreshRoots() {
const data = await fetchRoots();
roots.value = data.map(r => ({
root_id: r.root_id,
name: r.path.split('/').pop() || r.path.split('\\').pop() || r.root_id,
name: r.name,
path: r.path,
status: r.status,
}));