From 45e2f739d5f6497e8594fd439b7f5cfc667c277f Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:59:56 -0300 Subject: [PATCH] fix: adds edge filtering only to parameters not hidden (#6270) Adds advanced filter to only filter by showing fields on click of edge --- src/frontend/src/utils/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/utils/utils.ts b/src/frontend/src/utils/utils.ts index 9cf131f5c..9eef7f920 100644 --- a/src/frontend/src/utils/utils.ts +++ b/src/frontend/src/utils/utils.ts @@ -266,6 +266,7 @@ export function groupByFamily( return ( template?.type && template?.show && + !template?.advanced && ((!excludeTypes.has(template.type) && baseClassesSet.has(template.type)) || (template?.input_types &&