Skip to content
Snippets Groups Projects
Commit cfa50ffb authored by Robin Leber's avatar Robin Leber
Browse files

FIX: pipebinding position in code

parent 468f2012
No related branches found
No related tags found
No related merge requests found
...@@ -94,8 +94,8 @@ export const handlePipeBinding = (pipeMapping, editor) => { ...@@ -94,8 +94,8 @@ export const handlePipeBinding = (pipeMapping, editor) => {
const outgoingPipes = pipeMapping.filter( const outgoingPipes = pipeMapping.filter(
(pipe) => pipe.pipeDirection === "out" (pipe) => pipe.pipeDirection === "out"
); );
let lineNumberIn = 16; let lineNumberIn = 17;
let lineNumberOut = 18 + incomingPipes.length * 4; let lineNumberOut = 19 + incomingPipes.length * 4;
fillEditorwithCode(editor, incomingPipes, lineNumberIn); fillEditorwithCode(editor, incomingPipes, lineNumberIn);
fillEditorwithCode(editor, outgoingPipes, lineNumberOut); fillEditorwithCode(editor, outgoingPipes, lineNumberOut);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment