fix(client): quick search popup not working in horizontal layout (closes #1647)

This commit is contained in:
Elian Doran 2025-04-07 17:36:29 +03:00
parent 6cc10a47d1
commit 63458d55d3
No known key found for this signature in database

View File

@ -56,7 +56,11 @@ export default class QuickSearchWidget extends BasicWidget {
doRender() {
this.$widget = $(TPL);
this.dropdown = Dropdown.getOrCreateInstance(this.$widget.find("[data-bs-toggle='dropdown']")[0]);
this.dropdown = Dropdown.getOrCreateInstance(this.$widget.find("[data-bs-toggle='dropdown']")[0], {
popperConfig: {
strategy: "fixed"
}
});
this.$searchString = this.$widget.find(".search-string");
this.$dropdownMenu = this.$widget.find(".dropdown-menu");