ywana-core8 0.0.406 → 0.0.409

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" : "";
@@ -4147,7 +4147,7 @@ var StringEditor = function StringEditor(_ref6) {
4147
4147
  label: label,
4148
4148
  onChange: change,
4149
4149
  readOnly: !editable,
4150
- options: options
4150
+ options: buildOptions()
4151
4151
  });
4152
4152
 
4153
4153
  default:
@@ -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]);