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 8225bf4 commit b65b1e5Copy full SHA for b65b1e5
2 files changed
src/app/component/teams/teams.component.html
@@ -6,7 +6,7 @@ <h2>Team List</h2>
6
</ul>
7
</div>
8
<h2>Team Group</h2>
9
- <div class="group-expand" *ngFor="let group of teamGroups | keyvalue">
+ <div class="group-expand" *ngFor="let group of teamGroups | keyvalue : unsorted">
10
<h3>{{ group.key }}</h3>
11
<div class="team-list">
12
<ul>
src/app/component/teams/teams.component.ts
@@ -27,7 +27,12 @@ export class TeamsComponent implements OnInit {
27
console.log('teamGroups', this.teamGroups);
28
});
29
}
30
+
31
getTeamArray(key: string): string[] {
32
return this.teamGroups.get(key) || [];
33
34
35
+ unsorted() {
36
+ return 0;
37
+ }
38
0 commit comments