ywana-core8 0.0.41 → 0.0.42

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.
@@ -2506,7 +2506,6 @@ var ContentEditor = function ContentEditor(_ref) {
2506
2506
  }
2507
2507
 
2508
2508
  var sections = content.sections();
2509
- console.log('-----------contentEditor------', filter);
2510
2509
  return /*#__PURE__*/React.createElement("div", {
2511
2510
  className: "content-editor"
2512
2511
  }, sections.map(function (section) {
@@ -4150,7 +4149,9 @@ var TableFilters = function TableFilters(props) {
4150
4149
 
4151
4150
  var filterSchema = useMemo(function () {
4152
4151
  var filterSchema = Object.assign({}, schema);
4153
- Object.values(filterSchema).forEach(function (field) {
4152
+ Object.values(filterSchema).filter(function (field) {
4153
+ return field.filter === true;
4154
+ }).forEach(function (field) {
4154
4155
  return field.section = null;
4155
4156
  });
4156
4157
  delete filterSchema.flows;