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 &&
|
|
357
|
+
let columnFilterStatus = isColumnFilterable && propConfig && propConfig.isFilterable !== false
|
|
358
358
|
? EColumnFilterStatus.AVAILABLE
|
|
359
359
|
: EColumnFilterStatus.UNAVAILABLE;
|
|
360
360
|
if (columnFilterMap[propName] !== undefined) {
|