mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 08:17:06 +02: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 New Issue
Block a user