Skip to content

Commit

Permalink
add withSelection, update padding
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Mar 8, 2024
1 parent 2f6cf1e commit 2664cfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
export const NODE_PADDING_VERTICAL = 15;
export const NODE_PADDING_HORIZONTAL = 15;

export const GROUP_PADDING_VERTICAL = 15;
export const GROUP_PADDING_VERTICAL = 50;
export const GROUP_PADDING_HORIZONTAL = 25;

export const DEFAULT_TASK_WIDTH = 180;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const pipelineGroupsComponentFactory: ComponentFactory = (
}
switch (type) {
case 'Execution':
return DemoTaskGroup;
return withSelection()(DemoTaskGroup);
case 'Task':
return withSelection()(DemoTaskNode);
case DEFAULT_SPACER_NODE_TYPE:
Expand Down

0 comments on commit 2664cfb

Please sign in to comment.