File tree Expand file tree Collapse file tree 3 files changed +17
-19
lines changed Expand file tree Collapse file tree 3 files changed +17
-19
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,21 @@ import { groups } from '~/logic'
3
3
</script >
4
4
5
5
<template >
6
- <div class =" flex flex-wrap gap-x-2 gap-y-2" >
7
- <div >
8
- <div class =" subheader" >
9
- Suggested Shortcuts
10
- <sup class =" opacity-50 text-sm" >{{ groups.length }}</sup >
11
- </div >
12
- <div class =" flex flex-col space-y-4" >
13
- <div
14
- v-for =" shortcut of groups"
15
- :key =" shortcut.class"
16
- class =" p-4 rounded-md bg-gray-400 bg-opacity-5"
17
- >
18
- <GroupLabel
19
- :name =" shortcut.class"
20
- :count =" shortcut.uses.length.toString()"
21
- />
22
- </div >
6
+ <div class =" mb-5" >
7
+ <div class =" subheader" >
8
+ Suggested Shortcuts
9
+ <sup class =" opacity-50 text-sm" >{{ groups.length }}</sup >
10
+ </div >
11
+ <div class =" flex flex-col space-y-4" >
12
+ <div
13
+ v-for =" shortcut of groups"
14
+ :key =" shortcut.class"
15
+ class =" p-4 rounded-md bg-gray-400 bg-opacity-5"
16
+ >
17
+ <GroupLabel
18
+ :name =" shortcut.class"
19
+ :count =" shortcut.uses.length.toString()"
20
+ />
23
21
</div >
24
22
</div >
25
23
</div >
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ export const categories = computed(() => {
94
94
95
95
export const categorized = computed ( ( ) => {
96
96
if ( ! data . value )
97
- return { }
97
+ return [ ]
98
98
99
99
return categories . value
100
100
. map ( i => ( {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { isDemo } from '~/env'
9
9
<TopUtilities class =" pb-2" />
10
10
<ColorPalette class =" pb-2" />
11
11
<UtilitiesUsage class =" pb-2" />
12
- <GroupList />
12
+ <GroupList class = " pb-2 " />
13
13
<FilesList class =" pb-2" />
14
14
</div >
15
15
</template >
You can’t perform that action at this time.
0 commit comments