Skip to content

Commit

Permalink
fix: ensure people-filters are added with and clause for people-picker (
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnickii authored Nov 6, 2023
1 parent 68f517b commit 0d671e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mgt-components/src/graph/graph.people.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const findPeople = async (

if (filters !== '') {
// Adding the default people filters to the search filters
filter += `${filters}`;
filter += ` and ${filters}`;
}
let graphResult: CollectionResponse<Person>;
try {
Expand Down

0 comments on commit 0d671e6

Please sign in to comment.