From 1520e8a74e105e8e7afd519bff380b3f6c65455c Mon Sep 17 00:00:00 2001 From: ppetzold Date: Tue, 21 Mar 2023 12:21:20 +0100 Subject: [PATCH] update readme --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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, }, } ```