Skip to content

Commit

Permalink
Merge pull request #28 from CaitlynKnudsvig/increaseLimit
Browse files Browse the repository at this point in the history
Increased autocomplete results to 50
  • Loading branch information
solocommand authored Sep 19, 2019
2 parents 42f6729 + d5de84f commit 985f88b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/manage/app/services/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default Service.extend(ObjectQueryManager, {
async query(type, phrase, { pagination, vars } = {}) {
const { field, query, resultKey } = this.getQueryFor(type);
const input = {
pagination: pagination || { limit: 20 },
pagination: pagination || { limit: 50 },
field,
phrase,
position: 'contains',
Expand Down

0 comments on commit 985f88b

Please sign in to comment.