From 380e8e6a9c63cb84e9627162b340369ebe92d5fa Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 19 Mar 2023 08:19:25 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 89cddd4..e64febb 100644 --- a/README.md +++ b/README.md @@ -334,7 +334,9 @@ const config: PaginateConfig = { relations: { home: { pillows: true } }, sortableColumns: ['id', 'name', 'home.pillows.color'], searchableColumns: ['name', 'home.pillows.color'], - filterableColumns: { 'home.pillows.color': [FilterOperator.EQ] }, + filterableColumns: { + 'home.pillows.color': [FilterOperator.EQ] + }, } const result = await paginate(query, catRepo, config)