Renamed search max height to results max height.
This commit is contained in:
parent
7a950f307d
commit
1c6a33cd0f
@ -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"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user