Skip to content

Commit 93d2321

Browse files
authored
Update circular-heatmap.component.html
1 parent 0d7dd59 commit 93d2321

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/app/component/circular-heatmap/circular-heatmap.component.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,12 +254,17 @@ <h2>Nothing to show</h2>
254254
*ngFor="let item of activity.teamsImplemented | keyvalue">
255255
<mat-checkbox
256256
[checked]="item.value === true"
257+
*ngIf="teamVisible.includes(item.key | ToStringValue)"
257258
color="primary"
258259
(click)="this.teamCheckbox(activityIndex, item.key)">
259260
{{ item.key }}
260261
</mat-checkbox>
261262
</li>
262263
</ul>
264+
<b *ngIf="teamVisible.length === 0">
265+
No Teams Selected, Please select a team from the filters
266+
above.
267+
</b>
263268
</ng-template>
264269
</mat-expansion-panel>
265270
</mat-card-content>

0 commit comments

Comments
 (0)