fix: Fix stickies resize (#4986)

This commit is contained in:
Mutasem Aldmour 2022-12-20 16:58:54 +01:00 committed by GitHub
parent 87c76434a2
commit 82f763589b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -179,6 +179,7 @@ export interface IUpdateInformation {
export interface INodeUpdatePropertiesInformation {
name: string; // Node-Name
properties: {
position: XYPosition;
[key: string]: IDataObject | XYPosition;
};
}

View file

@ -229,7 +229,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
const updateInformation: INodeUpdatePropertiesInformation = {
name: this.node.name,
properties: {
position: { position },
position,
},
};