jamespot-front-business 1.1.75 → 1.1.76

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/cjs.js CHANGED
@@ -3692,7 +3692,8 @@ function renderWidget(fieldType, fieldProperties) {
3692
3692
  function renderProperty(properties, propertyToFind) {
3693
3693
  const labelProperty = properties === null || properties === void 0 ? void 0 : properties.find((property) => property.propertyType === propertyToFind);
3694
3694
  if (labelProperty) {
3695
- return `${propertyToFind.toLowerCase()}="${labelProperty.value}"`;
3695
+ const value = labelProperty.value.replaceAll("\"", """);
3696
+ return `${propertyToFind.toLowerCase()}="${value}"`;
3696
3697
  }
3697
3698
  return '';
3698
3699
  }