From c61dbb3247e1b3a3793a239412074039195ace23 Mon Sep 17 00:00:00 2001 From: mahdi andalib Date: Mon, 14 Mar 2022 10:46:42 +0330 Subject: [PATCH] update --- src/components/ReactTable5/BasicTable.js | 7 +++---- src/components/ReactTable5/GlobalFilter.js | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ReactTable5/BasicTable.js b/src/components/ReactTable5/BasicTable.js index b77d181..f351df4 100644 --- a/src/components/ReactTable5/BasicTable.js +++ b/src/components/ReactTable5/BasicTable.js @@ -144,7 +144,6 @@ const BasicTable = ({ addTab, activeTab }) => { return (
- {/* select View list */}
{ searchIcon={graySearchIcon} bgColor={"bg-transparent"} borderColor={"border-[#EEEEEE]"} - textColor={"text-[#DBDBDB]"} + textColor={"text-gray-500"} borderRadius={"rounded"} focusBorder={"focus:border-gray-200"} focusRing={"focus:ring-gray-200"} @@ -205,7 +204,7 @@ const BasicTable = ({ addTab, activeTab }) => { {/* table LIST */} {activeTab === 0 ? ( <> - {activeList === false && ( + {activeList === true && ( // table {
)} {/* GRID LIST */} - {activeList === true && ( + {activeList === false && (
);