diff --git a/frappe/public/js/frappe/list/base_list.js b/frappe/public/js/frappe/list/base_list.js index 388c84b30f..915de74cd1 100644 --- a/frappe/public/js/frappe/list/base_list.js +++ b/frappe/public/js/frappe/list/base_list.js @@ -1248,7 +1248,13 @@ class FilterArea { const $input = field.$wrapper.find("input").first(); if (!$input.length || $input.closest(".input-group").length) return; - const getSymbol = (match_type) => (match_type === "=" ? "=" : "≈"); + const getIcon = (match_type) => { + if (match_type === "=") { + return frappe.utils.icon("equal"); + } else { + return frappe.utils.icon("equal-approximately"); + } + }; $input.wrap('
'); const $inputGroup = $input.parent(); @@ -1260,7 +1266,7 @@ class FilterArea { data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> - ${getSymbol(df.match_type || "≈")} + ${getIcon(df.match_type || "≈")}