Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheihuzarevich committed Sep 24, 2024
1 parent 677a6d6 commit d75b639
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion projects/f-flow/src/f-canvas/f-canvas.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ export class FCanvasComponent extends FCanvasBase implements OnInit {
}

public fitToScreen(toCenter: IPoint = PointExtensions.initialize(), animated: boolean = true): void {
console.log('fitToScreen');
this.fMediator.send(new FitToFlowRequest(toCenter, animated));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class GetInputUnderPointerExecution

const connectors = output.isSelfConnectable ?
inputsUnderPointer :
this.filterSelfConnectable(inputsUnderPointer, output)
this.filterSelfConnectable(inputsUnderPointer, output);
return connectors.length > 0 ? connectors[0] : undefined;
}

Expand Down

0 comments on commit d75b639

Please sign in to comment.