Update load latest to show when there's new activity with an indicator
This commit is contained in:
parent
6f02548bca
commit
e89103915d
5 changed files with 59 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue