Skip to content

Commit

Permalink
fix: nodes is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
Jexordexan committed Feb 12, 2021
1 parent 387f5ae commit 7e2409d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ContainerMixin.js
Expand Up @@ -379,9 +379,9 @@ export const ContainerMixin = {
return;
}

const nodes = this.manager.refs;
this.index = nodes.length;
this.manager.active = { index: this.index };
const nodes = this.manager.refs;
this._axis = {
x: this.axis.indexOf('x') >= 0,
y: this.axis.indexOf('y') >= 0,
Expand Down

0 comments on commit 7e2409d

Please sign in to comment.