use an icon for "mark all" notifications (#8903)

This commit is contained in:
Denys Vuika
2023-09-13 08:32:41 +01:00
committed by GitHub
parent e14e489d2d
commit d7cf12d89b

View File

@@ -21,12 +21,12 @@
(click)="$event.stopPropagation()"> (click)="$event.stopPropagation()">
<div mat-subheader role="menuitem"> <div mat-subheader role="menuitem">
<span>{{ 'NOTIFICATIONS.TITLE' | translate }}</span> <span>{{ 'NOTIFICATIONS.TITLE' | translate }}</span>
<button (click)="markAsRead()" <button *ngIf="notifications.length"
id="adf-notification-history-mark-as-read" id="adf-notification-history-mark-as-read"
mat-button mat-icon-button
color="accent" title="{{ 'NOTIFICATIONS.MARK_AS_READ' | translate }}"
*ngIf="notifications.length"> (click)="markAsRead()">
{{ 'NOTIFICATIONS.MARK_AS_READ' | translate }} <mat-icon>done_all</mat-icon>
</button> </button>
</div> </div>