mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix: Fix stickies resize (#4986)
This commit is contained in:
@@ -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,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user