Skip to content
Snippets Groups Projects

Fpo/553 new page to list user notifications

Merged Florent Poittevin requested to merge fpo/553_new_page_to_list_user_notifications into master
8 files
+ 34
18
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -54,7 +54,7 @@ export abstract class AbstractMainToolbarPresentational extends SharedAbstractPr
numberMyOrderReadyNew: number = 0;
@Input()
numberPendingRequestNotificationInbox: number = 0;
numberPendingRequestNotifications: number = 0;
@Input()
isValidationRight: boolean;
@@ -122,9 +122,9 @@ export abstract class AbstractMainToolbarPresentational extends SharedAbstractPr
isVisible: () => true,
icon: IconNameEnum.notifications,
dataTest: DataTestEnum.linkMenuNotification,
badgeCounter: () => "" + this.numberPendingRequestNotificationInbox,
badgeCounter: () => "" + this.numberPendingRequestNotifications,
badgeDescription: "Counter of pending request notification in inbox",
badgeHidden: () => this.numberPendingRequestNotificationInbox === 0,
badgeHidden: () => this.numberPendingRequestNotifications === 0,
},
{
click: (menu) => this.navigate(menu.path()),
Loading