This commit is contained in:
2024-12-20 10:57:37 +01:00
parent 5e449e23b8
commit 48fd8fef73
2 changed files with 32 additions and 19 deletions

View File

@@ -116,7 +116,6 @@ export class TpFlowNode extends LitElement {
static get properties() {
return {
flowNodeType: { type: String },
inputs: { type: Array },
outputs: { type: Array },
x: { type: Number },
@@ -127,7 +126,6 @@ export class TpFlowNode extends LitElement {
constructor() {
super();
this.flowNodeType = 'BaseNode';
this.inputs = [];
this.outputs = [];
this.x = 0;
@@ -169,7 +167,7 @@ export class TpFlowNode extends LitElement {
return {
id: this.id,
type: this.flowNodeType,
type: super.tagName.toLowerCase(),
position: {
x: matrix.m41,
y: matrix.m42