Merge pull request #4670 from FinnStutzenstein/fixMotionBlockSlide

Fix motion block slide
This commit is contained in:
Emanuel Schütze 2019-05-07 17:14:01 +02:00 committed by GitHub
commit 38d572b34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,14 +7,16 @@
<table> <table>
<tr *ngFor="let i of rowsArray"> <tr *ngFor="let i of rowsArray">
<td *ngFor="let j of columnsArray"> <td *ngFor="let j of columnsArray">
<ng-container *ngIf="getMotion(i, j)">
<div class="ellipsis-overflow"> <div class="ellipsis-overflow">
{{ getMotionTitle(i, j) }} {{ getMotionTitle(i, j) }}
</div> </div>
<div class="white"><!-- ellipsis-overflow?? --> <div class="white">
<mat-basic-chip *ngIf="hasRecommendation(i, j)" disableRipple [ngClass]="getStateCssColor(i, j)" class="block-recommendation"> <mat-basic-chip *ngIf="hasRecommendation(i, j)" disableRipple [ngClass]="getStateCssColor(i, j)" class="block-recommendation">
{{ getRecommendationLabel(i, j) }} {{ getRecommendationLabel(i, j) }}
</mat-basic-chip> </mat-basic-chip>
</div> </div>
</ng-container>
</td> </td>
</tr> </tr>
</table> </table>