ywana-core8 0.0.405 → 0.0.408

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.
@@ -165,7 +165,7 @@ var Icon = function Icon(_ref) {
165
165
  event.preventDefault();
166
166
  }
167
167
 
168
- if (action) action(event);
168
+ if (action && !disabled) action(event);
169
169
  }
170
170
 
171
171
  var style = disabled ? "disabled" : clickable ? "clickable" : "";
@@ -5760,11 +5760,9 @@ var TableFilters = function TableFilters(props) {
5760
5760
  if (fs[key].filter === false) delete fs[key];
5761
5761
  }
5762
5762
  }
5763
- }
5763
+ } //Object.values(filterSchema).forEach(field => field.section = null)
5764
+
5764
5765
 
5765
- Object.values(filterSchema).forEach(function (field) {
5766
- return field.section = null;
5767
- });
5768
5766
  delete filterSchema.flows;
5769
5767
  return filterSchema;
5770
5768
  }, [schema]);