Skip to content

Commit 52533de

Browse files
committed
Linting
1 parent 8aa9236 commit 52533de

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,15 @@ <h2>Nothing to show</h2>
263263
</mat-expansion-panel-header>
264264
<ng-template matExpansionPanelContent>
265265
<ul class="team-list">
266-
<li
267-
*ngFor="let teamname of teamVisible">
266+
<li *ngFor="let teamname of teamVisible">
268267
<mat-checkbox
269-
[checked]="activity.teamsImplemented[teamname]"
268+
[checked]="activity.teamsImplemented[teamname]"
270269
color="primary"
271-
(click)="this.teamCheckbox(activityIndex, teamname); $event.preventDefault()">
272-
{{ teamname }}
270+
(click)="
271+
this.teamCheckbox(activityIndex, teamname);
272+
$event.preventDefault()
273+
">
274+
{{ teamname }}
273275
</mat-checkbox>
274276
</li>
275277
</ul>

0 commit comments

Comments
 (0)