Skip to content

Commit

Permalink
#34: adds info text to total reminder count
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Peter committed Aug 27, 2024
1 parent 4955676 commit 57a0810
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ <h2 translate>Reminder</h2>
[class.text-danger]="group.status === reminderGroupStatus.due && group.count > 0"
>
{{ group.count || 0 }}
<small *ngIf="group.total" class="text-muted">/ {{ group.total }}</small>
<small
*ngIf="group.total"
title="{{ 'Number of reminders if not filtered' | translate }}"
class="text-muted"
>
/ {{ group.total }}
</small>
</span>
<em>{{ group.status | translate }}</em>
<i [c8yIcon]="'expand-arrow'" [class.expanded]="groupIsExpanded[i]"></i>
Expand Down

0 comments on commit 57a0810

Please sign in to comment.