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 b43c39c commit dc2def1Copy full SHA for dc2def1
src/app/component/teams-groups-editor/teams-groups-editor.component.ts
@@ -187,9 +187,9 @@ export class TeamsGroupsEditorComponent implements OnChanges {
187
188
onDeleteTeam(team: TeamName) {
189
this.localCopyTeams = this.localCopyTeams.filter(t => t !== team);
190
+ // Remove team for any groups
191
for (let group in this.localCopyTeamGroups) {
- // eslint-disable-next-line
192
- this.localCopyTeamGroups[group] = this.localCopyTeamGroups[group].filter(team => team !== team); // eslint-disable-line
+ this.localCopyTeamGroups[group] = this.localCopyTeamGroups[group].filter(t => t !== team);
193
}
194
195
0 commit comments