From 7f0731b9f5db591d2b603d38866dfbaaa73640eb Mon Sep 17 00:00:00 2001 From: firestar5683 <168790843+firestar5683@users.noreply.github.com> Date: Wed, 22 Apr 2026 20:51:34 -0500 Subject: [PATCH] galaxy --- .../the_pond/assets/components/tools/device_settings.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/starpilot/system/the_pond/assets/components/tools/device_settings.js b/starpilot/system/the_pond/assets/components/tools/device_settings.js index 6185b644e..87eaf380a 100644 --- a/starpilot/system/the_pond/assets/components/tools/device_settings.js +++ b/starpilot/system/the_pond/assets/components/tools/device_settings.js @@ -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() {