Skip to content

Commit

Permalink
Revert "Remove view status button for okta (not fully implemented) (#…
Browse files Browse the repository at this point in the history
…46174)"

This reverts commit 54a0293.
  • Loading branch information
kimlisa committed Sep 4, 2024
1 parent dd576d8 commit 27a5b2a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions web/packages/teleport/src/Integrations/IntegrationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,15 @@ export function IntegrationList(props: Props<IntegrationLike>) {
return (
<Cell align="right">
<MenuButton>
{/* Currently, only okta supports status pages */}
{item.kind === 'okta' && (
<MenuItem
as={InternalRouteLink}
to={cfg.getIntegrationStatusRoute(item.kind, item.name)}
>
View Status
</MenuItem>
)}
<MenuItem onClick={() => props.onDeletePlugin(item)}>
Delete...
</MenuItem>
Expand Down

0 comments on commit 27a5b2a

Please sign in to comment.