diff --git a/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx b/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx index 418714f0c..51129d7fb 100644 --- a/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx +++ b/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx @@ -249,7 +249,7 @@ export function DataTable( continue; } const columnFieldConfig: FieldConfig = { - label: column.title ?? column.key, + label: column.title || column.key, key: column.key, // If no power search config provided we treat every input as a string operators: column.powerSearchConfig?.reduce((res, operatorConfig) => {