diff --git a/README.md b/README.md index 7e57877..e06bfe6 100644 --- a/README.md +++ b/README.md @@ -384,8 +384,11 @@ Filter operators must be whitelisted per column in `PaginateConfig`. const config: PaginateConfig = { // ... filterableColumns: { - id: [FilterOperator.EQ, FilterSuffix.NOT], // Enable individual operators - age: true, // Enable all operators on a single column + // Enable individual operators + id: [FilterOperator.EQ, FilterSuffix.NOT], + + // Enable all operators on a single column + age: true, }, } ```