From 514048dde131d0fa9cb75060211615c084b8c2dc Mon Sep 17 00:00:00 2001 From: ppetzold Date: Tue, 21 Mar 2023 12:20:45 +0100 Subject: [PATCH] update readme --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5ec22bd..7e57877 100644 --- a/README.md +++ b/README.md @@ -384,12 +384,8 @@ Filter operators must be whitelisted per column in `PaginateConfig`. const config: PaginateConfig = { // ... filterableColumns: { - // Whitelist operators individually - id: [FilterOperator.EQ, FilterSuffix.NOT], - 'toys.name': [FilterOperator.IN], - - // Whitelist all operators on a single column - age: true, + id: [FilterOperator.EQ, FilterSuffix.NOT], // Enable individual operators + age: true, // Enable all operators on a single column }, } ```