From da053d2bcfd6e7f703858e7211d336042d806d1d Mon Sep 17 00:00:00 2001 From: dougfabris Date: Tue, 9 Mar 2021 06:10:58 -0300 Subject: [PATCH] add pagination prop to GenericTable --- client/components/GenericTable/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/components/GenericTable/index.js b/client/components/GenericTable/index.js index 52ccdf832f09..147537c74f4e 100644 --- a/client/components/GenericTable/index.js +++ b/client/components/GenericTable/index.js @@ -18,6 +18,7 @@ const GenericTable = ({ results, setParams = () => { }, total, + pagination = true, ...props }, ref) => { const t = useTranslation(); @@ -69,7 +70,7 @@ const GenericTable = ({ - + />} } ;