From 90c864fafca1521351caa35908e41d58f42e270a Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Mon, 11 Sep 2023 19:41:10 -0300 Subject: [PATCH] refactor(parameterComponent): update text displayed based on the value of the 'left' prop for better clarity and consistency --- .../GenericNode/components/parameterComponent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx index 3140c3b62..ebc37fb90 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx @@ -121,7 +121,7 @@ export default function ParameterComponent({ <> {index === 0 && ( - {left ? "Components to connect into:" : "Components to connect to:"} + {left ? "Avaliable source components:" : "Avaliable target components:"} ) }