Skip to content

Commit

Permalink
add withSelection to graph
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Apr 26, 2024
1 parent 9aa51f6 commit 494d201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/concepts/topology/factories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { EXECUTION_TASK_NODE_TYPE } from './const';

export const pipelineComponentFactory: ComponentFactory = (kind, type) => {
if (kind === ModelKind.graph) {
return withPanZoom()(GraphComponent);
return withPanZoom()(withSelection()(GraphComponent));
}
switch (type) {
case DEFAULT_TASK_NODE_TYPE:
Expand Down

0 comments on commit 494d201

Please sign in to comment.