Update load latest to show when there's new activity with an indicator

This commit is contained in:
Paul Frazee 2023-05-25 01:30:48 -05:00
parent 6f02548bca
commit e89103915d
5 changed files with 59 additions and 9 deletions

View file

@ -290,7 +290,9 @@ export class NotificationsFeedModel {
}
get hasNewLatest() {
return this.queuedNotifications && this.queuedNotifications?.length > 0
return Boolean(
this.queuedNotifications && this.queuedNotifications?.length > 0,
)
}
get unreadCountLabel(): string {