Skip to content

Commit

Permalink
Review comment from Pratik
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabh Shukla committed Oct 22, 2024
1 parent da0584c commit 449899a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/src/app/dashboardv2/filter-v2/filter-new.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ export class FilterNewComponent implements OnInit, OnDestroy {
this.filterApplyData['selectedMap'][this.filterApplyData['label']] = [...new Set(event.map((item) => item.nodeId))];
let additionalFilterSelected;
if (this.squadLevel && this.squadLevel?.length) {
this.filterApplyData['label'] === this.squadLevel[0]?.hierarchyLevelId || this.filterApplyData['label'] === this.squadLevel[0]?.hierarchyLevelName ? true : false;
additionalFilterSelected = (this.filterApplyData['label'] === this.squadLevel[0]?.hierarchyLevelId || this.filterApplyData['label'] === this.squadLevel[0]?.hierarchyLevelName ? true : false)
}

this.filterApplyData['sprintIncluded'] = this.selectedTab?.toLowerCase() == 'iteration' ? ['CLOSED', 'ACTIVE'] : ['CLOSED'];
Expand Down

0 comments on commit 449899a

Please sign in to comment.