fix(query_report): handle filter style for collapsible filters (#36404)

This commit is contained in:
Diptanil Saha 2026-01-28 11:45:17 +05:30 committed by GitHub
parent c2600361ba
commit 217f8eaa7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -646,6 +646,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
$(this.filters[filter_no].wrapper).css("display", "flex");
$(this.filters[filter_no].wrapper).css("align-items", "center");
$(this.filters[filter_no].wrapper).css("gap", "5px");
this.handle_filter_styles($(this.filters[filter_no].wrapper));
this.$collapse_button.on("click", function () {
me.toggle_filter_visiblity();
});