Empty communities and collections items count are now shown. Show communities items count at the home page.

This commit is contained in:
damian
2023-06-13 19:57:30 +02:00
parent 8cc96060ff
commit 8bcceff085
4 changed files with 7 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
<span *ngIf="linkType == linkTypes.None" class="lead">
{{object.name}}
</span>
<span *ngIf="object.archivedItemsCount" class="archived-items-lead">[{{object.archivedItemsCount}}]<span>
<span *ngIf="object.archivedItemsCount >= 0" class="lead archived-items-lead">[{{object.archivedItemsCount}}]</span>
<div *ngIf="object.shortDescription" class="text-muted abstract-text">
{{object.shortDescription}}
</div>