Created
June 27, 2019 20:36
-
-
Save JasonStoltz/1b470d1deffbe5c35aed241c068b7456 to your computer and use it in GitHub Desktop.
Medium - Search UI - 10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const configurationOptions = { | |
// ... | |
autocompleteQuery: { | |
suggestions: { | |
types: { | |
documents: { | |
// Which fields to search for suggestions. | |
fields: ["name"] | |
}, | |
// How many suggestions appear. | |
size: 5 | |
} | |
} | |
} | |
// ... | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment