wip
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user