Fixed #2120 - Multiple SplitterPanels created using v-for directive

pull/2149/head
Tuğçe Küçükoğlu 2022-02-11 15:33:01 +03:00 committed by Tuğçe Küçükoğlu
parent 4ff6ea11ab
commit 7441f842af
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ export default {
if (this.isSplitterPanel(child)) {
panels.push(child);
}
else if (child.children.length instanceof Array) {
else if (child.children instanceof Array) {
child.children.forEach(nestedChild => {
if (this.isSplitterPanel(nestedChild)) {
panels.push(nestedChild)