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 5695bb4 commit 2fd062fCopy full SHA for 2fd062f
web/components/workspace/WorkspaceReviewsPanel.vue
@@ -25,6 +25,12 @@
25
@click="showArchived = !showArchived"
26
flat
27
>
28
+ <QBadge
29
+ v-show="filteredCandidates.length !== candidates.length"
30
+ color="accent"
31
+ :label="candidates.length - filteredCandidates.length"
32
+ floating
33
+ />
34
<QTooltip>
35
{{ showArchived ? "Showing archived" : "Hiding archived" }}
36
</QTooltip>
web/pages/home.vue
@@ -17,6 +17,12 @@
17
18
19
20
21
+ v-show="filteredWorkspaces.length !== workspaces.length"
22
23
+ :label="workspaces.length - filteredWorkspaces.length"
24
0 commit comments