Skip to content

Commit

Permalink
Pr changes requested
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelpiano committed Apr 15, 2024
1 parent 822c9cd commit d65de53
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class CustomNodeFactory extends AbstractReactFactory<NodeModel<NodeModelG
case NodeTypes.Via:
return <ViaNodeWidget engine={this.engine} model={event.model} />;
case NodeTypes.Destination:
return <DestinationNodeWidget engine={this.engine} model={event.model} forwardConnection={false}/>;
return <DestinationNodeWidget engine={this.engine} model={event.model} />;
default:
return <Fragment></Fragment>;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {ArrowDownwardIcon, ArrowOutward, DestinationIcon, OriginIcon, ViaIcon} f
interface DestinationNodeProps {
model: CustomNodeModel;
engine: DiagramEngine;
forwardConnection: boolean;
}

export const DestinationNodeWidget: React.FC<DestinationNodeProps> = ({
Expand Down

0 comments on commit d65de53

Please sign in to comment.