Skip to content
Snippets Groups Projects
Commit e211db4d authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

No longer filtering the staff list by the current value

parent ea25ff88
No related branches found
No related tags found
2 merge requests!1390Catch up with Main,!1345Fixed disappearing QA staff list
Pipeline #9841 passed
......@@ -278,12 +278,10 @@ export class ActiveCapabilityRequestsComponent implements OnInit, OnDestroy {
// Get autocomplete suggestion list
this.filteredStage2QaStaff = this.stage2QaControl.valueChanges.pipe(
startWith(""),
map((value) => (typeof value === "string" ? value : value.user_name)),
map((val) => this.filter(val, "Stage 2")),
);
this.filteredStage1QaStaff = this.stage1QaControl.valueChanges.pipe(
startWith(""),
map((value) => (typeof value === "string" ? value : value.user_name)),
map((val) => this.filter(val, "Stage 1")),
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment