diff --git a/website/src/components/TeaserFlow/B.js b/website/src/components/TeaserFlow/B.js index a3c72fc8..e92bd4cc 100644 --- a/website/src/components/TeaserFlow/B.js +++ b/website/src/components/TeaserFlow/B.js @@ -33,7 +33,7 @@ const InputLabel = styled.div` color: ${(p) => p.theme.colors.violetLighten60}; `; -const InputNode = ({ id, data }) => { +const InputNode = ({ id, data, isConnectable }) => { return ( {data.label}: @@ -42,17 +42,29 @@ const InputNode = ({ id, data }) => { value={data.value} onChange={(event) => data.onChange(event, id)} /> - + ); }; -const ResultNode = ({ data }) => { +const ResultNode = ({ data, isConnectable }) => { return (
{data.value}
- - + +
); };