diff --git a/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx b/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx index 1403784ff..418714f0c 100644 --- a/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx +++ b/desktop/flipper-plugin/src/ui/data-table/DataTableWithPowerSearch.tsx @@ -256,13 +256,13 @@ export function DataTable( res[operatorConfig.key] = operatorConfig; return res; }, {} as Record) ?? { - string_contains: dataTablePowerSearchOperators.string_contains(), + string_contains: dataTablePowerSearchOperators.string_contains(true), string_not_contains: - dataTablePowerSearchOperators.string_not_contains(), + dataTablePowerSearchOperators.string_not_contains(true), string_matches_exactly: - dataTablePowerSearchOperators.string_matches_exactly(), + dataTablePowerSearchOperators.string_matches_exactly(true), string_not_matches_exactly: - dataTablePowerSearchOperators.string_not_matches_exactly(), + dataTablePowerSearchOperators.string_not_matches_exactly(true), }, }; res.fields[column.key] = columnFieldConfig;