diff --git a/src/frontend/src/CustomNodes/GenericNode/index.tsx b/src/frontend/src/CustomNodes/GenericNode/index.tsx index 56d574920..0567580e3 100644 --- a/src/frontend/src/CustomNodes/GenericNode/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/index.tsx @@ -118,8 +118,14 @@ export default function GenericNode({ Build flow to validate status. - + + Build{" "} + {" "} + flow to validate status. + ) : (
{validationStatus.params diff --git a/src/frontend/src/components/inputFileComponent/index.tsx b/src/frontend/src/components/inputFileComponent/index.tsx index 99f066aff..f1919f220 100644 --- a/src/frontend/src/components/inputFileComponent/index.tsx +++ b/src/frontend/src/components/inputFileComponent/index.tsx @@ -112,7 +112,7 @@ export default function InputFileComponent({ {!editNode && !loading && ( )} {!editNode && loading && ( diff --git a/src/frontend/src/components/textAreaComponent/index.tsx b/src/frontend/src/components/textAreaComponent/index.tsx index dc6f92cd2..c7c7f5e80 100644 --- a/src/frontend/src/components/textAreaComponent/index.tsx +++ b/src/frontend/src/components/textAreaComponent/index.tsx @@ -30,24 +30,23 @@ export default function TextAreaComponent({
- { - setMyValue(e.target.value); - onChange(e.target.value); - }} - /> + value={myValue} + className={ + editNode + ? "input-edit-node" + : "input-primary" + (disabled ? " input-disable " : "") + } + placeholder={"Type something..."} + onChange={(e) => { + setMyValue(e.target.value); + onChange(e.target.value); + }} + />