修复getcomponents获取为空问题

This commit is contained in:
yhh
2021-04-29 11:00:15 +08:00
parent 9fa0442b20
commit 0748652a8d
5 changed files with 51 additions and 10 deletions

View File

@@ -231,11 +231,11 @@ module es {
let fastList = this.fastComponentsMap.get(typeName);
if (fastList)
components.concat(fastList);
components = components.concat(fastList);
let fastToAddList = this.fastComponentsToAddMap.get(typeName);
if (fastToAddList)
components.concat(fastToAddList);
components =components.concat(fastToAddList);
return components;
}