Merge pull request #35902 from 0xsatoshi99/fix-saved-filter-click-area

fix: make entire row clickable for saved filters
This commit is contained in:
Ejaaz Khan 2026-01-13 17:12:31 +05:30 committed by GitHub
commit 06f3a0a143
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@ export default class ListFilter {
const $item = this.filter_template(filter);
// Apply filter
$item.find(".filter-label").on("click", () => {
$item.find(".dropdown-item").on("click", () => {
this.apply_saved_filter(filter.name, filter.filter_name);
});