From 5d3708e5ed3543d64dc372b06fda37ec5ac2840a Mon Sep 17 00:00:00 2001 From: SkyZeroZx <73321943+SkyZeroZx@users.noreply.github.com> Date: Sun, 4 Jan 2026 13:12:01 -0500 Subject: [PATCH] docs: prevent mobile overflow in the route behavior customization example --- .../src/content/guide/routing/customizing-route-behavior.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/adev/src/content/guide/routing/customizing-route-behavior.md b/adev/src/content/guide/routing/customizing-route-behavior.md index db4da260b84..77000a544c8 100644 --- a/adev/src/content/guide/routing/customizing-route-behavior.md +++ b/adev/src/content/guide/routing/customizing-route-behavior.md @@ -87,7 +87,11 @@ export class CustomerComponent { } ``` -Using `'always'` ensures matrix parameters, route data, and resolved values are available further down the route tree—handy when you share contextual identifiers across feature areas such as `/org/:orgId/projects/:projectId/customers/:customerId`. +Using `'always'` ensures matrix parameters, route data, and resolved values are available further down the route tree—handy when you share contextual identifiers across feature areas such as: + +```text {hideCopy} +/org/:orgId/projects/:projectId/customers/:customerId +``` ```ts @Component({