diff --git a/search-select.js b/search-select.js index 9c95593..7aa247b 100644 --- a/search-select.js +++ b/search-select.js @@ -21,10 +21,10 @@ class SearchSelect extends IgniteElement { searchSelector: null, searchCallback: null, searchDelay: 200, - searchMaxHeight: "15em", searching: false, documentListener: null, maxResults: -1, + resultsMaxHeight: "15em", onEnter: null }; } @@ -133,7 +133,7 @@ class SearchSelect extends IgniteElement { //Search results popper new Popper() .class("form-control form-control-lg shadow d-flex flex-column gap-3 overflow-auto p-3") - .style("max-height", this.searchMaxHeight) + .style("max-height", this.resultsMaxHeight) .property("show", this.searching) .child( new span().class("text-muted").innerText(this.results, results => results && results.length > 0 ? `Showing ${results.length} ${results.length == 1 ? "result" : "results"}` : "No results"),