Skip to content

Commit ac29ab3

Browse files
committed
change start/end for custom ocif extension
1 parent 0f10ce4 commit ac29ab3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libs/app-canvas/src/app/exporters/export-ocif.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,11 @@ export class OCIFExporter extends BaseExporter<OCIFFile, OCIFInfo> {
289289
// type: connectionNodeInfoPropertyName,
290290
// nodeType: nodeInfo.type,
291291
// lineType: (nodeInfo as any).lineType ?? 'Straight',
292-
// start: {
292+
// startNode: {
293293
// connected_to: `${node.startNode.id}`,
294294
// port_name: node.startNodeThumb?.thumbName ?? 'output',
295295
// },
296-
// end: {
296+
// endNode: {
297297
// connected_to: `${node.endNode.id}`,
298298
// port_name: node.endNodeThumb?.thumbName ?? 'input',
299299
// },
@@ -348,11 +348,11 @@ export class OCIFExporter extends BaseExporter<OCIFFile, OCIFInfo> {
348348
type: connectionNodeInfoPropertyName,
349349
nodeType: nodeInfo.type,
350350
lineType: (nodeInfo as any).lineType ?? 'Straight',
351-
start: {
351+
startNode: {
352352
connected_to: `${node.startNode.id}`,
353353
port_name: node.startNodeThumb?.thumbName,
354354
},
355-
end: {
355+
endNode: {
356356
connected_to: `${node.endNode.id}`,
357357
port_name: node.endNodeThumb?.thumbName,
358358
},

0 commit comments

Comments
 (0)