Skip to content

Commit

Permalink
fix: empty notifications messange
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfran committed Nov 21, 2023
1 parent f38ec6b commit 6fb3d5b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ <h3 class="title">
</label>
</div>

<div
*ngIf="!vm.filterNotifications.length && !vm.showUnread"
class="empty">
{{ t('navigation.notifications.empty') }}
</div>
<ng-container *ngIf="!vm.notifications.length">
<div class="empty">
{{ t('navigation.notifications.empty') }}
</div>
</ng-container>

<div
*ngIf="!vm.filterNotifications.length && vm.showUnread"
*ngIf="vm.notifications.length && vm.showUnread"
class="empty">
{{ t('navigation.notifications.all_read') }}
</div>
Expand Down

0 comments on commit 6fb3d5b

Please sign in to comment.