Skip to content

Commit 4ebb83a

Browse files
committed
remove label text from subnet and linode column
1 parent f7f6019 commit 4ebb83a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/manager/src/features/VPCs/VPCDetail/SubnetLinodeRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ const getIPRangesCellContents = (
341341

342342
export const SubnetLinodeTableRowHead = (
343343
<TableRow>
344-
<TableCell>Linode Label</TableCell>
344+
<TableCell>Linode</TableCell>
345345
<TableCell sx={{ width: '14%' }}>Status</TableCell>
346346
<Hidden smDown>
347347
<TableCell>VPC IPv4</TableCell>

packages/manager/src/features/VPCs/VPCDetail/VPCSubnetsTable.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe('VPC Subnets table', () => {
130130
}
131131

132132
getByPlaceholderText('Filter Subnets by label or id');
133-
getByText('Subnet Label');
133+
getByText('Subnet');
134134
getByText(subnet.label);
135135
getByText('Subnet ID');
136136
getAllByText(subnet.id);

packages/manager/src/features/VPCs/VPCDetail/VPCSubnetsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ export const VPCSubnetsTable = (props: Props) => {
278278
width: '24%',
279279
})}
280280
>
281-
Subnet Label
281+
Subnet
282282
</TableSortCell>
283283
<Hidden smDown>
284284
<TableSortCell

0 commit comments

Comments
 (0)