We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7dd59 commit 93d2321Copy full SHA for 93d2321
1 file changed
src/app/component/circular-heatmap/circular-heatmap.component.html
@@ -254,12 +254,17 @@ <h2>Nothing to show</h2>
254
*ngFor="let item of activity.teamsImplemented | keyvalue">
255
<mat-checkbox
256
[checked]="item.value === true"
257
+ *ngIf="teamVisible.includes(item.key | ToStringValue)"
258
color="primary"
259
(click)="this.teamCheckbox(activityIndex, item.key)">
260
{{ item.key }}
261
</mat-checkbox>
262
</li>
263
</ul>
264
+ <b *ngIf="teamVisible.length === 0">
265
+ No Teams Selected, Please select a team from the filters
266
+ above.
267
+ </b>
268
</ng-template>
269
</mat-expansion-panel>
270
</mat-card-content>
0 commit comments