@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/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) setFieldValue("properties[".concat(index, "].value"), value);
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) {