@byteluck-fe/model-driven-engine 2.2.7-beta.1 → 2.2.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 +2 -2
|
@@ -1268,7 +1268,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1268
1268
|
if (controlId === undefined) {
|
|
1269
1269
|
return this.runtime.flatInstances;
|
|
1270
1270
|
}
|
|
1271
|
-
var instances = this.runtime.instanceMap[controlId] || [];
|
|
1271
|
+
var instances = Array.from(this.runtime.instanceMap[controlId] || []);
|
|
1272
1272
|
if (header) {
|
|
1273
1273
|
// 如果能从flatInstances里边取到,就通过getInstanceInSubtableHeader方法取,取不到则换一种方式
|
|
1274
1274
|
if (instances.length) {
|