Skip to content

Commit

Permalink
fix(pipelines): Set dimensions on spacer nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 committed Apr 13, 2023
1 parent 6273718 commit ecda780
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 ecda780

Please sign in to comment.