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 f2587c9 commit 4ee60deCopy full SHA for 4ee60de
1 file changed
src/app/component/circular-heatmap/circular-heatmap.component.ts
@@ -209,7 +209,7 @@ export class CircularHeatmapComponent implements OnInit {
209
).forEach((key, index) => {
210
if (key === currChipValue) {
211
console.log('group selected');
212
- this.teamVisible = this.teamGroups[key];
+ this.teamVisible = [...this.teamGroups[key]];
213
}
214
});
215
@@ -235,6 +235,7 @@ export class CircularHeatmapComponent implements OnInit {
235
this.teamVisible.push(currChipValue);
236
this.selectedTeamChips = [];
237
} else {
238
+ this.selectedTeamChips = [];
239
this.teamVisible = this.teamVisible.filter(o => o !== currChipValue);
240
241
console.log('Selected Chips', this.selectedTeamChips);
0 commit comments