Fixed #2120 - Multiple SplitterPanels created using v-for directive
parent
4ff6ea11ab
commit
7441f842af
|
@ -229,7 +229,7 @@ export default {
|
||||||
if (this.isSplitterPanel(child)) {
|
if (this.isSplitterPanel(child)) {
|
||||||
panels.push(child);
|
panels.push(child);
|
||||||
}
|
}
|
||||||
else if (child.children.length instanceof Array) {
|
else if (child.children instanceof Array) {
|
||||||
child.children.forEach(nestedChild => {
|
child.children.forEach(nestedChild => {
|
||||||
if (this.isSplitterPanel(nestedChild)) {
|
if (this.isSplitterPanel(nestedChild)) {
|
||||||
panels.push(nestedChild)
|
panels.push(nestedChild)
|
||||||
|
|
Loading…
Reference in New Issue