cloud-web-corejs 1.0.54-dev.109 → 1.0.54-dev.110
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/components/table/index.js +1 -1
- package/src/components/xform/form-designer/designer.js +3 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +989 -1
- package/src/components/xform/form-designer/indexMixin.js +771 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +165 -1
- package/src/views/bd/setting/form_template/mixins/edit.js +169 -1
- package/src/views/bd/setting/menu_kind/mixins/list.js +176 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +763 -1
@@ -891,7 +891,9 @@ let chartContainers = [],
|
|
891
891
|
|
892
892
|
Object.keys(newWidget.options).forEach(ck => {
|
893
893
|
if (!oldWidget.hasOwnProperty(ck)) {
|
894
|
-
|
894
|
+
let value = newWidget.options[ck];
|
895
|
+
let nullValue = Array.isArray(value) ? [] : null;
|
896
|
+
oldWidget.options[ck] = nullValue;
|
895
897
|
}
|
896
898
|
});
|
897
899
|
},
|