@@ -145,7 +145,7 @@ export function EditInternetGatewayForm() {
- Internet Gateway IP Address
+ Internet gateway IP address
{gatewayIpAddresses && gatewayIpAddresses.length > 1 ? 'es' : ''}
{gatewayIpAddresses && gatewayIpAddresses.length > 0 ? (
@@ -164,10 +164,10 @@ export function EditInternetGatewayForm() {
))
) : (
- {'This internet gateway does not have any specific IP addresses attached. '}
+ {'This internet gateway does not have any IP addresses attached. '}
{hasAttachedPool
? 'It will use an address from the attached IP pool.'
- : 'Use the CLI to attach an IP Pool or specify an IP address to use with this gateway.'}
+ : 'Use the CLI to attach an IP pool or IP address to this gateway.'}
)}
@@ -176,7 +176,7 @@ export function EditInternetGatewayForm() {
- Internet Gateway IP Pool
+ Internet gateway IP pool
{gatewayIpPools && gatewayIpPools.length > 1 ? 's' : ''}
{hasAttachedPool ? (
diff --git a/test/e2e/vpcs.e2e.ts b/test/e2e/vpcs.e2e.ts
index ffa43dbfc..f2e9ef10e 100644
--- a/test/e2e/vpcs.e2e.ts
+++ b/test/e2e/vpcs.e2e.ts
@@ -335,12 +335,14 @@ test('can view internet gateways', async ({ page }) => {
description: 'internet gateway 1',
'Attached IP Address': '123.4.56.3',
'Attached IP Pool': 'ip-pool-1',
+ Routes: '1',
})
await expectRowVisible(table, {
name: 'internet-gateway-2',
description: 'internet gateway 2',
'Attached IP Address': '—',
'Attached IP Pool': 'ip-pool-2',
+ Routes: '—',
})
await page.getByRole('link', { name: 'internet-gateway-1' }).click()