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.
@@ -891,7 +891,9 @@ let chartContainers = [],
891
891
 
892
892
  Object.keys(newWidget.options).forEach(ck => {
893
893
  if (!oldWidget.hasOwnProperty(ck)) {
894
- oldWidget.options[ck] = baseRefUtil.deepClone(newWidget.options[ck]);
894
+ let value = newWidget.options[ck];
895
+ let nullValue = Array.isArray(value) ? [] : null;
896
+ oldWidget.options[ck] = nullValue;
895
897
  }
896
898
  });
897
899
  },