Skip to content

Commit

Permalink
Merge pull request #34 from jeff-phillips-18/spacer-node-fix
Browse files Browse the repository at this point in the history
fix(pipelines): Set dimensions on spacer nodes
  • Loading branch information
jeff-phillips-18 committed Apr 14, 2023
2 parents d76fb34 + ecda780 commit 87bd5bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/module/src/pipelines/utils/utils.ts
Expand Up @@ -95,7 +95,9 @@ export const getSpacerNodes = (
Object.keys(multiParallelToParallelList).forEach(key => {
spacerNodes.push({
id: key,
type: spacerNodeType
type: spacerNodeType,
width: 1,
height: 1
});
});

Expand Down

0 comments on commit 87bd5bb

Please sign in to comment.