This commit is contained in:
parent
1f2eb722f1
commit
33287aad57
|
@ -127,7 +127,10 @@ export const removePropertyOf = function(obj){
|
||||||
export function removeTree(list) {
|
export function removeTree(list) {
|
||||||
var this_ = this
|
var this_ = this
|
||||||
for (var i in list) {
|
for (var i in list) {
|
||||||
if (list[i].children.length == 0) {
|
if (list[i].children == null) {
|
||||||
|
delete list[i].children;
|
||||||
|
}
|
||||||
|
else if (list[i].children.length == 0) {
|
||||||
list[i].children = undefined
|
list[i].children = undefined
|
||||||
} else {
|
} else {
|
||||||
this_.removeTree(list[i].children)
|
this_.removeTree(list[i].children)
|
||||||
|
|
Loading…
Reference in New Issue