Only extract parameters of non n
This commit is contained in:
@@ -224,9 +224,11 @@ export class ForeignkeyTypeComponent extends FieldType<FieldTypeConfig> implemen
|
|||||||
|
|
||||||
result = result.concat();
|
result = result.concat();
|
||||||
} else if (typeof(obj[k]) == "object") {
|
} else if (typeof(obj[k]) == "object") {
|
||||||
|
if (obj[k]) {
|
||||||
result = result.concat(this.extractParameters(obj[k]));
|
result = result.concat(this.extractParameters(obj[k]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user