File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
xmcl-keystone-ui/src/views Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 5
5
dense
6
6
class =" ml-1 flex-grow-0 justify-start overflow-auto px-2"
7
7
>
8
+ <template v-if =" isValidating " >
9
+ <v-skeleton-loader
10
+ v-for =" i in 5"
11
+ :key =" i"
12
+ class =" non-moveable my-2 ml-[6px]"
13
+ type =" avatar"
14
+ />
15
+ </template >
8
16
<AppSideBarInstanceItem
9
17
v-for =" (i, index) of instances"
10
18
:key =" i.path + ' ' + index"
@@ -61,7 +69,7 @@ const { t } = useI18n()
61
69
const sideBarShowCurseforge = useLocalStorageCacheBool (' sideBarShowCurseforge' , true )
62
70
const sideBarShowModrinth = useLocalStorageCacheBool (' sideBarShowModrinth' , true )
63
71
const sideBarShowFtb = useLocalStorageCacheBool (' sideBarShowFtb' , true )
64
- const { instances, setToPrevious } = injection (kInstances )
72
+ const { instances, setToPrevious, isValidating } = injection (kInstances )
65
73
const { showOpenDialog } = windowController
66
74
const { addExternalInstance } = useService (InstanceServiceKey )
67
75
You can’t perform that action at this time.
0 commit comments