File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 10
10
" `PeoplePicker`: Use webAbsoluteUrl if provided through props to ensure user [#1273](https://github.com/pnp/sp-dev-fx-controls-react/issues/1273)"
11
11
],
12
12
"fixes" : [
13
+ " `PeoplePicker`: fixes where people picker returns no results [#1292](https://github.com/pnp/sp-dev-fx-controls-react/issues/1292)" ,
13
14
" `FilePicker`: Tile view fix [#1272](https://github.com/pnp/sp-dev-fx-controls-react/issues/1272)"
14
15
]
15
16
},
16
17
"contributions" : [
18
+ " [Chad Eiserloh](https://github.com/c-eiser13)" ,
17
19
" [Hilton Giesenow](https://github.com/HiltonGiesenow)" ,
18
20
" [Jake Stanger](https://github.com/JakeStanger)" ,
19
21
" [Victor Romanov](https://github.com/VRomanovTau)"
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ export default class SPPeopleSearchService {
110
110
try {
111
111
// If the running env is SharePoint, loads from the peoplepicker web service
112
112
const userRequestUrl : string = `${ siteUrl || this . context . pageContext . web . absoluteUrl } /_api/SP.UI.ApplicationPages.ClientPeoplePickerWebServiceInterface.clientPeoplePickerSearchUser` ;
113
- const searchBody = {
113
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
114
+ const searchBody : any = {
114
115
queryParams : {
115
116
AllowEmailAddresses : true ,
116
117
AllowMultipleEntities : false ,
@@ -119,7 +120,6 @@ export default class SPPeopleSearchService {
119
120
PrincipalSource : 15 ,
120
121
PrincipalType : this . getSumOfPrincipalTypes ( principalTypes ) ,
121
122
QueryString : query ,
122
- SharePointGroupID : null
123
123
}
124
124
} ;
125
125
You can’t perform that action at this time.
0 commit comments