Skip to content

Commit

Permalink
chore: redirect link
Browse files Browse the repository at this point in the history
Signed-off-by: amitamrutiya <[email protected]>
  • Loading branch information
amitamrutiya committed Jan 31, 2025
1 parent 096afb6 commit 4f45ad5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
16 changes: 1 addition & 15 deletions src/custom/Workspaces/WorkspaceTeamsTable.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Launch } from '@mui/icons-material';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import { useState } from 'react';
import { Accordion, AccordionDetails, AccordionSummary, IconButton, Typography } from '../../base';
import { CLOUD_URL } from '../../constants/constants';
import { Accordion, AccordionDetails, AccordionSummary, Typography } from '../../base';
import { TeamsIcon } from '../../icons';
import { useTheme } from '../../theme';
import { CustomColumnVisibilityControl } from '../CustomColumnVisibilityControl';
import { CustomTooltip } from '../CustomTooltip';
import SearchBar from '../SearchBar';
import { TeamTableConfiguration } from '../TeamTable';
import TeamTable from '../TeamTable/TeamTable';
Expand Down Expand Up @@ -143,17 +140,6 @@ const TeamsTable: React.FC<TeamsTableProps> = ({
disabled={!isAssignTeamAllowed}
title="Assign Teams"
/>
<CustomTooltip title={'Manage Teams'}>
<div>
<IconButton
onClick={() => {
window.open(`${CLOUD_URL}/identity/teams`, '_blank');
}}
>
<Launch />
</IconButton>
</div>
</CustomTooltip>
</TableRightActionHeader>
</TableHeader>
</AccordionSummary>
Expand Down
2 changes: 2 additions & 0 deletions src/custom/Workspaces/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ export const L5DeleteIcon = ({
...style
}}
disableRipple
disabled={disabled}
onClick={onClick}
>
<DeleteIcon
Expand Down Expand Up @@ -317,6 +318,7 @@ export const L5EditIcon = ({
...style
}}
disableRipple
disabled={disabled}
>
<EditIcon
fill={disabled ? theme.palette.icon.disabled : theme.palette.icon.default}
Expand Down

0 comments on commit 4f45ad5

Please sign in to comment.