mig-schema-table 3.0.56 → 3.0.57

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.
@@ -354,7 +354,7 @@ function SchemaTable({ Heading = VariableSizeList, checkedIndexes, disabledCheck
354
354
  const SchemaTableTh = React.useCallback(({ style, index }) => {
355
355
  const propName = columnNames[index];
356
356
  const propConfig = config ? config[propName] : undefined;
357
- let columnFilterStatus = isColumnFilterable && (propConfig === null || propConfig === void 0 ? void 0 : propConfig.isFilterable) !== false
357
+ let columnFilterStatus = isColumnFilterable && propConfig && propConfig.isFilterable !== false
358
358
  ? EColumnFilterStatus.AVAILABLE
359
359
  : EColumnFilterStatus.UNAVAILABLE;
360
360
  if (columnFilterMap[propName] !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mig-schema-table",
3
- "version": "3.0.56",
3
+ "version": "3.0.57",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist/"