From 1503ef306763f299db01bce7278a12af76e127a3 Mon Sep 17 00:00:00 2001 From: Satoshi Dev <162055292+0xsatoshi99@users.noreply.github.com> Date: Tue, 13 Jan 2026 10:31:13 +0100 Subject: [PATCH] fix: make entire row clickable for saved filters Fixes #35894 --- frappe/public/js/frappe/list/list_filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_filter.js b/frappe/public/js/frappe/list/list_filter.js index 6649134589..267ed1c63f 100644 --- a/frappe/public/js/frappe/list/list_filter.js +++ b/frappe/public/js/frappe/list/list_filter.js @@ -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); });