diff --git a/public/app/core/components/Select/UserPicker.tsx b/public/app/core/components/Select/UserPicker.tsx index 12c12a8d047..c20e95c910e 100644 --- a/public/app/core/components/Select/UserPicker.tsx +++ b/public/app/core/components/Select/UserPicker.tsx @@ -43,7 +43,7 @@ export class UserPicker extends Component { } return getBackendSrv() - .get(`/api/org/users/lookup?query=${query}&limit=10`) + .get(`/api/org/users/lookup?query=${query}&limit=100`) .then((result: any) => { return result.map((user: any) => ({ id: user.userId, @@ -71,7 +71,7 @@ export class UserPicker extends Component { defaultOptions={true} loadOptions={this.debouncedSearch} onChange={onSelected} - placeholder="Select user" + placeholder="Start typing to search for user" noOptionsMessage="No users found" />