Update load latest to show when there's new activity with an indicator
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user