Removed hardcoded background in access keys table (#2837)

## What does this do?

Removed non required classes from access keys table

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2023-05-28 19:47:10 -06:00
committed by GitHub
parent 9053e64dff
commit c0cf7358c7
2 changed files with 2 additions and 7 deletions

View File

@@ -31,10 +31,7 @@ import { useSelector } from "react-redux";
import { useNavigate } from "react-router-dom";
import api from "../../../common/api";
import { stringSort } from "../../../utils/sortFunctions";
import {
actionsTray,
tableStyles,
} from "../Common/FormComponents/common/styleLibrary";
import { actionsTray } from "../Common/FormComponents/common/styleLibrary";
import { ErrorResponseHandler } from "../../../common/types";
import ChangePasswordModal from "./ChangePasswordModal";
@@ -251,7 +248,7 @@ const Account = () => {
</Box>
</Grid>
<Grid item xs={12} sx={{ ...tableStyles.tableBlock }}>
<Grid item xs={12}>
<DataTable
isLoading={loading}
records={filteredRecords}

View File

@@ -29,7 +29,6 @@ import {
containerForHeader,
objectBrowserCommon,
searchField,
tableStyles,
} from "../../Common/FormComponents/common/styleLibrary";
import { IAM_SCOPES } from "../../../../common/SecureComponent/permissions";
import PanelTitle from "../../Common/PanelTitle/PanelTitle";
@@ -65,7 +64,6 @@ const useStyles = makeStyles((theme: Theme) =>
backgroundImage: "url(/images/ob_folder_filled.svg)",
},
},
...tableStyles,
...actionsTray,
...searchField,
...objectBrowserCommon,