Fix list counter in the navigation counting archived lists
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2021-01-14 22:40:13 +01:00
parent c051baf9d1
commit 5e67934bfe
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 3 deletions

View File

@ -73,14 +73,14 @@
<label
:for="n.id + 'checker'"
class="menu-label"
v-tooltip="n.title + ' (' + n.lists.length + ')'">
v-tooltip="n.title + ' (' + n.lists.filter(l => !l.isArchived).length + ')'">
<span class="name">
<span
:style="{ backgroundColor: n.hexColor }"
class="color-bubble"
v-if="n.hexColor !== ''">
</span>
{{ n.title }} ({{ n.lists.length }})
{{ n.title }} ({{ n.lists.filter(l => !l.isArchived).length }})
</span>
</label>
</div>
@ -122,7 +122,7 @@
</template>
</ul>
<label :for="n.id + 'checker'" class="hidden-hint">
Show hidden lists ({{ n.lists.length }})...
Show hidden lists ({{ n.lists.filter(l => !l.isArchived).length }})...
</label>
</div>
</template>