diff --git a/src/frontend/src/CustomNodes/GenericNode/index.tsx b/src/frontend/src/CustomNodes/GenericNode/index.tsx index 65ab04664..3430125c0 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/textAreaComponent/index.tsx b/src/frontend/src/components/textAreaComponent/index.tsx index 664986610..90ea12992 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); + }} + />