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 8aa9236 commit 52533deCopy full SHA for 52533de
1 file changed
src/app/component/circular-heatmap/circular-heatmap.component.html
@@ -263,13 +263,15 @@ <h2>Nothing to show</h2>
263
</mat-expansion-panel-header>
264
<ng-template matExpansionPanelContent>
265
<ul class="team-list">
266
- <li
267
- *ngFor="let teamname of teamVisible">
+ <li *ngFor="let teamname of teamVisible">
268
<mat-checkbox
269
- [checked]="activity.teamsImplemented[teamname]"
+ [checked]="activity.teamsImplemented[teamname]"
270
color="primary"
271
- (click)="this.teamCheckbox(activityIndex, teamname); $event.preventDefault()">
272
- {{ teamname }}
+ (click)="
+ this.teamCheckbox(activityIndex, teamname);
+ $event.preventDefault()
273
+ ">
274
+ {{ teamname }}
275
</mat-checkbox>
276
</li>
277
</ul>
0 commit comments