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 && (
);