cnhis-design-vue 3.1.39-beta.0 → 3.1.39-beta.1

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.
@@ -209,7 +209,7 @@ function useComplexOptionsKey() {
209
209
  }, {});
210
210
  return Object.entries(values).reduce((res, [k, v]) => {
211
211
  const field = fieldMap[k];
212
- if (isArray(field.option) && isComplexOption(field.option)) {
212
+ if (field && isArray(field.option) && isComplexOption(field.option)) {
213
213
  res[k] = JSON.stringify(v);
214
214
  } else {
215
215
  res[k] = v;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.1.39-beta.0",
3
+ "version": "3.1.39-beta.1",
4
4
  "license": "ISC",
5
5
  "module": "./es/components/index.js",
6
6
  "main": "./es/components/index.js",
@@ -61,5 +61,5 @@
61
61
  "iOS 7",
62
62
  "last 3 iOS versions"
63
63
  ],
64
- "gitHead": "cc1af9ed9e10d1c84d5eec93d6adb2812cf7e3ee"
64
+ "gitHead": "fb69c0ba6a797d8905b7513fd47437a8809c1a29"
65
65
  }