Skip to content

Commit

Permalink
Merge pull request #226 from Brendonovich/fixCustomNodes
Browse files Browse the repository at this point in the history
Node id duplicates.
  • Loading branch information
jdudetv authored Nov 8, 2023
2 parents 58e07b6 + f6354cf commit b9b9137
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1625,12 +1625,12 @@ export function pkg(core: Core) {
type: t.string(),
}),
int: io.dataOutput({
id: "eventKey",
id: "int",
name: "Int Data",
type: t.int(),
}),
float: io.dataOutput({
id: "eventKey",
id: "float",
name: "Float Data",
type: t.float(),
}),
Expand Down Expand Up @@ -1678,12 +1678,12 @@ export function pkg(core: Core) {
type: t.string(),
}),
int: io.dataOutput({
id: "eventKey",
id: "int",
name: "Int Data",
type: t.int(),
}),
float: io.dataOutput({
id: "eventKey",
id: "float",
name: "Float Data",
type: t.float(),
}),
Expand Down Expand Up @@ -1717,17 +1717,17 @@ export function pkg(core: Core) {
type: t.string(),
}),
string: io.dataInput({
id: "eventKey",
id: "string",
name: "String Data",
type: t.string(),
}),
int: io.dataInput({
id: "eventKey",
id: "int",
name: "Int Data",
type: t.int(),
}),
float: io.dataInput({
id: "eventKey",
id: "float",
name: "Float Data",
type: t.float(),
}),
Expand Down Expand Up @@ -1763,17 +1763,17 @@ export function pkg(core: Core) {
type: t.string(),
}),
string: io.dataInput({
id: "eventKey",
id: "string",
name: "String Data",
type: t.string(),
}),
int: io.dataInput({
id: "eventKey",
id: "int",
name: "Int Data",
type: t.int(),
}),
float: io.dataInput({
id: "eventKey",
id: "float",
name: "Float Data",
type: t.float(),
}),
Expand Down

1 comment on commit b9b9137

@vercel
Copy link

@vercel vercel bot commented on b9b9137 Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.