diff --git a/README.md b/README.md
index c05a53f..88301ca 100644
--- a/README.md
+++ b/README.md
@@ -79,6 +79,7 @@ keys|all[Array]|List of properties that will be searched. This also supports nes
list|null|Array of properties to be filtered.
placeholder|'Search'|Placeholder of the searchbox
resultsTemplate| Func | Template of the dropdown divs
+showDropdownAtStart|false|Allow the searchbox to act as a `filter` dropdown with initial values. Yields all results when the search value is blank.
shouldSort| true | Whether to sort the result list, by score.
sortFn|`Array.prototype.sort`|The function that is used for sorting the result list.
threshold|0.6|At what point does the match algorithm give up. A threshold of `0.0` requires a perfect match (of both letters and location), a threshold of `1.0` would match anything.
diff --git a/src/index.js b/src/index.js
index 2e25cc7..20a615f 100644
--- a/src/index.js
+++ b/src/index.js
@@ -56,7 +56,7 @@ function defaultResultsTemplate(props, state, styl, clickHandler) {
return state.results.map((val, i) => {
const style = state.selectedIndex === i ? {...styl.selectedResultStyle, ...props.selectedListItemStyle} : {...styl.resultsStyle, ...props.listItemStyle };
return (
-