@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
|
@@ -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
|
|