We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8e5d4 commit 8d05f4cCopy full SHA for 8d05f4c
packages/core/src/client/webcomponents/components/DockEntriesWithCategories.vue
@@ -17,11 +17,14 @@ const emit = defineEmits<{
17
const groups = computed(() => {
18
const map = new Map<string, DevToolsDockEntry[]>()
19
for (const entry of props.entries) {
20
+ if (entry.isHidden)
21
+ continue
22
const category = entry.category ?? 'default'
23
if (!map.has(category))
24
map.set(category, [])
25
map.get(category)!.push(entry)
26
}
27
+
28
const entries = Array
29
.from(map.entries())
30
.sort(([a], [b]) => {
0 commit comments