fix(10-13): sidebar shimmer rows and search-at-root visibility

- TreeItem.vue: replace 'Loading…' text with 3 animate-pulse shimmer rows
- StorageBrowser.vue: showSearch now true for mode=local OR mode=cloud (Gap 1 + Gap 2)
This commit is contained in:
curo1305
2026-06-16 19:06:52 +02:00
parent e3c681f99d
commit f9e5a31945
2 changed files with 6 additions and 3 deletions
@@ -284,7 +284,7 @@ const emit = defineEmits([
'file-delete',
])
const showSearch = computed(() => props.mode === 'local' && props.breadcrumb.length > 0)
const showSearch = computed(() => props.mode === 'local' || props.mode === 'cloud')
function topicColor(name) {
return props.topicColorFn(name)