mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -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 {
|
||||
name: string; // Node-Name
|
||||
properties: {
|
||||
position: XYPosition;
|
||||
[key: string]: IDataObject | XYPosition;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -229,7 +229,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
|
|||
const updateInformation: INodeUpdatePropertiesInformation = {
|
||||
name: this.node.name,
|
||||
properties: {
|
||||
position: { position },
|
||||
position,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue