Fixed #1914 - Error while dynamic remove SplitterPanel component

pull/1934/head
Tuğçe Küçükoğlu 2021-12-21 13:50:34 +03:00
parent 517a0d7602
commit 60ece4fdcc
1 changed files with 5 additions and 5 deletions

View File

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