mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 21:37:32 -08:00
fix: Fix stickies resize (#4986)
This commit is contained in:
parent
87c76434a2
commit
82f763589b
|
@ -179,6 +179,7 @@ export interface IUpdateInformation {
|
||||||
export interface INodeUpdatePropertiesInformation {
|
export interface INodeUpdatePropertiesInformation {
|
||||||
name: string; // Node-Name
|
name: string; // Node-Name
|
||||||
properties: {
|
properties: {
|
||||||
|
position: XYPosition;
|
||||||
[key: string]: IDataObject | XYPosition;
|
[key: string]: IDataObject | XYPosition;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -229,7 +229,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
|
||||||
const updateInformation: INodeUpdatePropertiesInformation = {
|
const updateInformation: INodeUpdatePropertiesInformation = {
|
||||||
name: this.node.name,
|
name: this.node.name,
|
||||||
properties: {
|
properties: {
|
||||||
position: { position },
|
position,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue