Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
reddigari committed May 2, 2020
1 parent 44899f9 commit cd809d5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions front-end/src/components/CustomNode/NodeConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,23 +135,15 @@ function OptionInput(props) {
if (props.type === "file") {
inputComp = <FileUploadInput {...props} disabled={isFlow} />
} else if (props.type === "string") {
<<<<<<< HEAD
inputComp = <SimpleInput {...props} type="text" disabled={isFlow} />
=======
inputComp = <SimpleInput {...props} type="text" />
} else if (props.type === "text") {
inputComp = <SimpleInput {...props} type="textarea"/>
>>>>>>> master
inputComp = <SimpleInput {...props} type="textarea" disabled={isFlow} />
} else if (props.type === "int") {
inputComp = <SimpleInput {...props} type="number" disabled={isFlow} />
} else if (props.type === "boolean") {
<<<<<<< HEAD
inputComp = <BooleanInput {...props} disabled={isFlow} />
=======
inputComp = <BooleanInput {...props} />
} else if (props.type === "select") {
inputComp = <SelectInput {...props} />
>>>>>>> master
} else {
return (<></>)
}
Expand Down

0 comments on commit cd809d5

Please sign in to comment.