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 964204d commit 32a71d6Copy full SHA for 32a71d6
packages/mgt-components/src/components/mgt-people-picker/mgt-people-picker.ts
@@ -1040,11 +1040,11 @@ export class MgtPeoplePicker extends MgtTemplatedComponent {
1040
} else {
1041
const isUserOrContactType = this.userType === UserType.user || this.userType === UserType.contact;
1042
if (this._userFilters && isUserOrContactType) {
1043
+ people = await getUsers(graph, this._userFilters, this.showMax);
1044
1045
people = await getPeople(graph, this.userType, this._peopleFilters);
1046
}
1047
- people = await getUsers(graph, this._userFilters, this.showMax);
1048
} else if (this.type === PersonType.group) {
1049
if (this.groupIds) {
1050
try {
0 commit comments