@tmsfe/tms-core 0.0.30 → 0.0.31
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/package.json +1 -1
- package/src/cloudReport.ts +2 -2
package/package.json
CHANGED
package/src/cloudReport.ts
CHANGED
|
@@ -131,8 +131,8 @@ function formatData(page: IPage, seqId: string, data: any[]): DataType[] {
|
|
|
131
131
|
let index = nextIndex;
|
|
132
132
|
for (const item of data) {
|
|
133
133
|
if (index >= arr.length) {
|
|
134
|
-
console.error(data);
|
|
135
|
-
|
|
134
|
+
console.error('埋点参数个数超出上限而被截断', data);
|
|
135
|
+
break;
|
|
136
136
|
}
|
|
137
137
|
arr[index] = convert2String(item);
|
|
138
138
|
index += 1;
|