Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
snakajima committed May 9, 2024
1 parent 2c59fa3 commit 73c91fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class ComputedNode extends Node {
this.pendings.add(this.ifSource.nodeId);
}
this.dynamicParams = Object.keys(this.params).reduce((tmp: Record<string, DataSource>, key) => {
const dataSource = parseNodeName(this.params[key], graph.version);
const dataSource = parseNodeName(this.params[key], graph.version < 0.3 ? 0.3 : graph.version);
if (dataSource.nodeId) {
tmp[key] = dataSource;
this.pendings.add(dataSource.nodeId);
Expand Down

0 comments on commit 73c91fd

Please sign in to comment.