Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Feb 4, 2025
2 parents a59839f + f4a39d1 commit 4b58a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/Tinebase/js/widgets/grid/FilterPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ Ext.extend(Tine.widgets.grid.FilterPanel, Ext.Panel, {

for (let id in this.filterToolbars) {
if (this.filterToolbars.hasOwnProperty(id) && this.filterToolbars[id].isActive) {
this.quickFilterPlugin.ftb = this.filterToolbars[id];
if (this.quickFilterPlugin) this.quickFilterPlugin.ftb = this.filterToolbars[id];
const filterData = this.filterToolbars[id].getValue();
filters.push({'condition': 'AND', 'filters': filterData, 'id': id, label: Ext.util.Format.htmlDecode(this.filterToolbars[id].title)});
}
Expand Down

0 comments on commit 4b58a1a

Please sign in to comment.