We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5731e commit 22cf7ccCopy full SHA for 22cf7cc
1 file changed
src/main/malewicz/src/components/TypesListPanel.vue
@@ -6,7 +6,8 @@
6
</v-toolbar>
7
8
<v-list two-line>
9
- <v-list-group v-for="tag in allTags()" prepend-icon="bookmark_border">
+ <div v-for="tag in allTags()">
10
+ <v-list-group v-if="typesByTag(tag).length > 0" prepend-icon="bookmark_border">
11
<template v-slot:activator>
12
<v-list-tile>
13
<v-list-tile-title>{{tag}}</v-list-tile-title>
@@ -26,6 +27,7 @@
26
27
<span v-else>{{ item.properties.title }}</span>
28
</v-tooltip>
29
</v-list-group>
30
+ </div>
31
</v-list>
32
33
</div>
0 commit comments