diff --git a/app/ui/lib/Truncate.tsx b/app/ui/lib/Truncate.tsx
index c1b1df3d5c..92792b9813 100644
--- a/app/ui/lib/Truncate.tsx
+++ b/app/ui/lib/Truncate.tsx
@@ -32,9 +32,12 @@ export const Truncate = ({
// Only use the tooltip if the text is longer than maxLength
return (
-
+ // overflow-hidden required to make inner truncate work
+
- {truncate(text, maxLength, position)}
+
+ {truncate(text, maxLength, position)}
+
{hasCopyButton &&
}
diff --git a/mock-api/vpc.ts b/mock-api/vpc.ts
index b575041b96..caab75d1a6 100644
--- a/mock-api/vpc.ts
+++ b/mock-api/vpc.ts
@@ -48,7 +48,7 @@ export const vpcs: Json
= [vpc, vpc2]
export const defaultRouter: Json = {
id: 'fc59fb4d-baad-44a8-b152-9a3c27ae8aa1',
name: 'mock-system-router',
- description: 'a fake router',
+ description: 'Routes are automatically added to this router as VPC subnets are created',
time_created: new Date(2024, 0, 1).toISOString(),
time_modified: new Date(2024, 0, 2).toISOString(),
vpc_id: vpc.id,