Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a note about Scheduled Upgrades moving to Cluster Management page #49404

Merged
merged 6 commits into from
Dec 3, 2024
21 changes: 21 additions & 0 deletions web/packages/teleport/src/Support/Support.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,27 @@ export const Support = ({
{isEnterprise && !cfg.isCloud && licenseExpiryDateText && (
<DataItem title="License Expiry" data={licenseExpiryDateText} />
)}
{isCloud && (
<Flex mt="5">
<Icons.Info mr="2" />
<Text>
Looking for{' '}
<Text
fontWeight={'bold'}
css={`
display: inline;
`}
>
Scheduled Upgrades?
</Text>{' '}
It is now in{' '}
<Link to={cfg.getManageClusterRoute(clusterId)}>
Cluster Management
</Link>{' '}
page.
</Text>
</Flex>
)}
</StyledRow>
</StyledMultiRowBox>
<MobileSeparator />
Expand Down
Loading