From a9586a8e8e7a71a285e8514cb887d55b0bbd46d0 Mon Sep 17 00:00:00 2001 From: IRBorisov <8611739+IRBorisov@users.noreply.github.com> Date: Wed, 13 Dec 2023 15:37:36 +0300 Subject: [PATCH] Update ConstituentsSearch.tsx --- .../src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx b/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx index 95c63fee..e306ce2b 100644 --- a/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx +++ b/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx @@ -41,7 +41,6 @@ function ConstituentsSearch({ schema, activeID, activeExpression, setFiltered }: let result: IConstituenta[] = []; if (filterSource === DependencyMode.EXPRESSION) { const aliases = extractGlobals(activeExpression); - console.log(aliases); result = schema.items.filter((cst) => aliases.has(cst.alias)); const names = result.map(cst => cst.alias) const diff = Array.from(aliases).filter(name => !names.includes(name));