From fef84b4f31f07efdb33bbfc0e0b6d08562275e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Fri, 10 Jan 2020 20:37:32 +0100 Subject: [PATCH] Show badge only if there are comments --- .../components/shared/room-list/room-list.component.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/components/shared/room-list/room-list.component.html b/src/app/components/shared/room-list/room-list.component.html index 601bb17ae..cea02be19 100644 --- a/src/app/components/shared/room-list/room-list.component.html +++ b/src/app/components/shared/room-list/room-list.component.html @@ -14,8 +14,8 @@ <!-- filter input --> <mat-form-field *ngIf="this.rooms && this.rooms.length > 5" class="filterWrapper"> - <input (focus)="eventService.makeFocusOnInputTrue()" (blur)="eventService.makeFocusOnInputFalse()" matInput (keyup)="applyFilter($event.target.value)" - class="filter" + <input (focus)="eventService.makeFocusOnInputTrue()" (blur)="eventService.makeFocusOnInputFalse()" matInput + (keyup)="applyFilter($event.target.value)" class="filter" attr.aria-labelledby="sessionHistoryLabel{{ this.rooms.length === 1 ? '1' : '' }}"/> <mat-placeholder class="placeholder">{{ 'room-list.filter-message' | translate }}</mat-placeholder> </mat-form-field> @@ -29,7 +29,9 @@ {{ 'room-list.panel-session-name' | translate }} </th> <td mat-cell *matCellDef="let room"> - <span matBadge="{{room.commentCount}}" matBadgeOverlap="false">{{ room.name }}</span> + <span matBadge="{{room.commentCount > 0 ? room.commentCount : null}}" matBadgeOverlap="false"> + {{ room.name }} + </span> </td> </ng-container> -- GitLab