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

Merge branch 'fix_reviewer_filter' into 'main'

Fixed disappearing QA staff list

See merge request !1345
parents 51efed8c e211db4d
No related branches found
No related tags found
2 merge requests!1390Catch up with Main,!1345Fixed disappearing QA staff list
Pipeline #9842 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