Skip to content

Commit

Permalink
Increase search limit on team add user and improve placeholder (grafa…
Browse files Browse the repository at this point in the history
  • Loading branch information
dprokop committed Nov 20, 2020
1 parent 671b319 commit a312f1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/app/core/components/Select/UserPicker.tsx
Expand Up @@ -43,7 +43,7 @@ export class UserPicker extends Component<Props, State> {
}

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,
Expand Down Expand Up @@ -71,7 +71,7 @@ export class UserPicker extends Component<Props, State> {
defaultOptions={true}
loadOptions={this.debouncedSearch}
onChange={onSelected}
placeholder="Select user"
placeholder="Start typing to search for user"
noOptionsMessage="No users found"
/>
</div>
Expand Down

0 comments on commit a312f1a

Please sign in to comment.