@bigbinary/neeto-themes-frontend 2.0.9 → 2.0.10
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/README.md +88 -18
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -930,7 +930,9 @@ var Properties = function Properties(_ref) {
|
|
|
930
930
|
var index = findIndexBy({
|
|
931
931
|
key: name
|
|
932
932
|
}, values.properties);
|
|
933
|
-
if (index !== -1
|
|
933
|
+
if (index !== -1 && values.properties[index].value !== value) {
|
|
934
|
+
setFieldValue("properties[".concat(index, "].value"), value);
|
|
935
|
+
}
|
|
934
936
|
setVariable(snakeToCamelCase(name), variableValue !== null && variableValue !== void 0 ? variableValue : value);
|
|
935
937
|
};
|
|
936
938
|
var handleOverlayChange = function handleOverlayChange(key, value) {
|