ywana-core8 0.0.193 → 0.0.194

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.
@@ -4075,6 +4075,8 @@ var ContentViewer = function ContentViewer(props) {
4075
4075
  var content = props.content;
4076
4076
  if (!content) return /*#__PURE__*/React.createElement("div", null, "No Content...");
4077
4077
  var sections = content.sections();
4078
+ var value = content.value();
4079
+ console.log(value);
4078
4080
  return /*#__PURE__*/React.createElement("div", {
4079
4081
  className: "content-viewer"
4080
4082
  }, sections.map(function (section) {
@@ -4086,7 +4088,7 @@ var ContentViewer = function ContentViewer(props) {
4086
4088
  return /*#__PURE__*/React.createElement(FieldViewer, {
4087
4089
  key: field.id,
4088
4090
  field: field,
4089
- value: content[field.id]
4091
+ value: value[field.id]
4090
4092
  });
4091
4093
  })));
4092
4094
  }));