This commit is contained in:
firestar5683
2026-04-22 20:51:34 -05:00
parent e96a54febd
commit 7f0731b9f5
@@ -705,8 +705,12 @@ function toggleManage(key) {
function matchesFilter(p) {
if (!state.filter) return true
if (isGroupParam(p)) return false
const q = state.filter.toLowerCase()
return p.label.toLowerCase().includes(q) || p.key.toLowerCase().includes(q)
const label = String(p.label || "").toLowerCase()
const key = String(p.key || "").toLowerCase()
const description = String(p.description || "").toLowerCase()
return label.includes(q) || key.includes(q) || description.includes(q)
}
function clearSearchFilter() {