2 title="Tasks and Notifications"
3 [ngClass]="{ 'running': hasRunningTasks }"
4 (click)="togglePanel($event)">
5 <div class="notification-icon-wrapper">
6 <svg cdsIcon="notification"
8 title="notification"></svg>
9 <span class="notification-count"
10 *ngIf="notificationCount > 0">
11 {{ notificationCount }}
14 <span class="d-md-none"
15 i18n>Tasks and Notifications</span>
18 <cd-notification-panel *ngIf="isPanelOpen && useNewPanel"></cd-notification-panel>
19 <cd-notifications-sidebar *ngIf="isPanelOpen && !useNewPanel"></cd-notifications-sidebar>