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

change: [M3-7755] – Update IPv4 range "Learn more" docs link #10181

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Support for VPC IPv4 Ranges in Linode Create flow and 'VPC IPv4 Ranges' column to inner Subnets table on VPC Detail page ([#10116](https://github.com/linode/manager/pull/10116))
- Support VPC IPv4 Ranges in Add/Edit Linode Config dialog ([#10170](https://github.com/linode/manager/pull/10170))

### Changed:

- "Learn more" docs link for IPv4 ranges in Add/Edit Linode Config dialog, Linode Create flow, and VPC "Assign Linodes" drawer

### Fixed:

- Error when enabling backups for Linodes in regions with $0 pricing ([#10153](https://github.com/linode/manager/pull/10153))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import { Notice } from 'src/components/Notice/Notice';
import { TooltipIcon } from 'src/components/TooltipIcon';
import { Typography } from 'src/components/Typography';
import {
ASSIGN_COMPUTE_INSTANCE_TO_VPC_LINK,
ASSIGN_IPV4_RANGES_DESCRIPTION,
ASSIGN_IPV4_RANGES_TITLE,
UNDERSTANDING_IP_ADDRESSES_LINK,
} from 'src/features/VPCs/constants';
import { ExtendedIP } from 'src/utilities/ipUtils';

Expand Down Expand Up @@ -81,6 +81,6 @@ const StyledDescription = styled('span')(() => ({
const IPv4RangesDescriptionJSX = (
<>
<StyledDescription>{ASSIGN_IPV4_RANGES_DESCRIPTION}</StyledDescription>
<Link to={UNDERSTANDING_IP_ADDRESSES_LINK}>Learn more</Link>.
<Link to={ASSIGN_COMPUTE_INSTANCE_TO_VPC_LINK}>Learn more</Link>.
</>
);
4 changes: 2 additions & 2 deletions packages/manager/src/features/VPCs/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ export const VPC_GETTING_STARTED_LINK =
export const VPC_MULTIPLE_CONFIGURATIONS_LEARN_MORE_LINK =
'https://www.linode.com/docs/products/compute/compute-instances/guides/configuration-profiles/';

export const UNDERSTANDING_IP_ADDRESSES_LINK =
'https://www.linode.com/docs/guides/how-to-understand-ip-addresses/';
export const ASSIGN_COMPUTE_INSTANCE_TO_VPC_LINK =
'https://www.linode.com/docs/products/networking/vpc/guides/assign-services/';
Loading