@capillarytech/creatives-library 8.0.351 → 8.0.352

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "8.0.351",
4
+ "version": "8.0.352",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -799,6 +799,9 @@ export class Create extends React.Component { // eslint-disable-line react/prefe
799
799
  }
800
800
  const formData = _.cloneDeep(this.state.formData);
801
801
  formData[currentTab - 1][field.id] = myField.value;
802
+ if (formData.base) {
803
+ formData.base[field.id] = myField.value;
804
+ }
802
805
  this.setState({formData}, () => this.onTemplateContentChange());
803
806
  }
804
807