@byteluck-fe/model-driven-engine 2.5.0-alpha.1 → 2.5.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/common/Engine.js +1 -1
- package/dist/index.umd.js +6 -6
- package/package.json +4 -4
|
@@ -1314,7 +1314,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1314
1314
|
// cc.timeEnd(label)
|
|
1315
1315
|
return this.runtime.flatInstances;
|
|
1316
1316
|
}
|
|
1317
|
-
var instances = this.runtime.instanceMap[controlId] || [];
|
|
1317
|
+
var instances = Array.from(this.runtime.instanceMap[controlId] || []);
|
|
1318
1318
|
if (header) {
|
|
1319
1319
|
// 如果能从flatInstances里边取到,就通过getInstanceInSubtableHeader方法取,取不到则换一种方式
|
|
1320
1320
|
if (instances.length) {
|