Skip to content

Commit

Permalink
Fix Bucket Audit Acess width problem
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
  • Loading branch information
dvaldivia committed Jun 8, 2022
1 parent 7a8e2ca commit 7c731fb
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,8 @@ interface IAccessDetailsProps {
match: any;
}

const useStyles = makeStyles((theme: Theme) =>
createStyles({
...tableStyles,
})
);
const AccessDetails = ({ match }: IAccessDetailsProps) => {
const dispatch = useDispatch();
const classes = useStyles();

const loadingBucket = useSelector(selBucketDetailsLoading);

Expand Down Expand Up @@ -180,7 +174,7 @@ const AccessDetails = ({ match }: IAccessDetailsProps) => {
{displayPoliciesList && <Tab label="Policies" {...a11yProps(0)} />}
{displayUsersList && <Tab label="Users" {...a11yProps(1)} />}
</Tabs>
<Paper className={classes.tableBlock}>
<Paper>
<TabPanel index={0} value={curTab}>
<SecureComponent
scopes={[IAM_SCOPES.ADMIN_LIST_USER_POLICIES]}
Expand Down

0 comments on commit 7c731fb

Please sign in to comment.