remove distracting empty mat-chip

This commit is contained in:
Maximilian Krambach 2019-04-23 18:22:35 +02:00
parent d0c6fd1dd1
commit 18a3ea28b9

View File

@ -64,7 +64,7 @@
<ng-container matColumnDef="recommendation">
<mat-header-cell *matHeaderCellDef> <span translate>Recommendation</span> </mat-header-cell>
<mat-cell class="chip-container" *matCellDef="let motion">
<mat-basic-chip disableRipple class="bluegrey">
<mat-basic-chip *ngIf="motion.recommendation" disableRipple class="bluegrey">
{{ getRecommendationLabel(motion) }}
</mat-basic-chip>
</mat-cell>