Skip to content

Commit df94173

Browse files
committed
Linted
1 parent c4466f8 commit df94173

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.prettierrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"arrowParens": "avoid",
88
"trailingComma": "es5",
99
"bracketSameLine": true,
10-
"printWidth": 80
10+
"printWidth": 80,
11+
"endOfLine": "auto"
1112
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ <h2>Nothing to show</h2>
231231
#c="matChip"
232232
*ngFor="let team of teamList"
233233
(click)="toggleTeamSelection(c)"
234-
selected
235-
>
234+
selected>
236235
{{ team }}
237236
</mat-chip>
238237
</mat-chip-list>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,11 @@ export class CircularHeatmapComponent implements OnInit {
7575
.then(() => this.LoadTeamsFromMetaYaml())
7676
.then(() => this.LoadMaturityDataFromGeneratedYaml())
7777
.then(() => {
78-
console.log(`${this.perfNow()}s: set filters: ${this.chips?.length}`);
79-
this.matChipsArray = this.chips.toArray();
78+
console.log(`${this.perfNow()}s: set filters: ${this.chips?.length}`);
79+
this.matChipsArray = this.chips.toArray();
8080
});
8181
}
8282

83-
8483
@ViewChildren(MatChip) chips!: QueryList<MatChip>;
8584
matChipsArray: MatChip[] = [];
8685

0 commit comments

Comments
 (0)