We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0dee6 commit a706552Copy full SHA for a706552
app/cdap/components/StudioV2/components/DAGEditor/useDAGController.ts
@@ -76,7 +76,6 @@ export function useDAGController(
76
const handleNodesChange = useCallback(
77
(changes) => {
78
onNodesChange(changes);
79
- // console.log(changes);
80
for (const change of changes) {
81
if (change.type === 'position' && change.dragging === false) {
82
const node = getNodeById(change.id);
@@ -98,10 +97,7 @@ export function useDAGController(
98
97
);
99
100
const handleEdgesChange = useCallback((changes) => {
101
- // onEdgesChange(changes);
102
- // console.log('EDGES CHANGE: ', changes);
103
- // for (const change of changes) {
104
- // }
+ // pass
105
}, []);
106
107
const populateEdge = useCallback(
0 commit comments