From bec2720c7b2a0c4bd1c89d866f4abe38ad8961cd Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Tue, 14 May 2024 15:27:07 +0800 Subject: [PATCH] refactor(console): do not parameterize guide id (#5863) --- packages/console/src/utils/route.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/console/src/utils/route.ts b/packages/console/src/utils/route.ts index 1afaa57a9..04e536ab7 100644 --- a/packages/console/src/utils/route.ts +++ b/packages/console/src/utils/route.ts @@ -18,7 +18,11 @@ export const getRoutePattern = (pathname: string, routes: RouteObject[]) => { } // If the path is not a parameter, or it's an ID parameter, use the path as is. - if (!segment.startsWith(':') || segment.endsWith('Id') || segment.endsWith('id')) { + // Exception: For `:guideId`, we want to use the parameter value for better analytics. + if ( + segment !== ':guideId' && + (!segment.startsWith(':') || segment.endsWith('Id') || segment.endsWith('id')) + ) { return segment; }