From bf19fd499fa8d7dc15ef5e140acb0bbd7457c45a Mon Sep 17 00:00:00 2001 From: Erik Wegner Date: Wed, 5 Nov 2025 13:36:01 +0100 Subject: [PATCH] docs: Add the missing function call to use the signal's actual value (cherry picked from commit e18aac88d4a85b922f7dff7483dd0d2317e543d3) --- adev/src/content/guide/routing/common-router-tasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/routing/common-router-tasks.md b/adev/src/content/guide/routing/common-router-tasks.md index 59a259cf443..9d4ce0574b4 100644 --- a/adev/src/content/guide/routing/common-router-tasks.md +++ b/adev/src/content/guide/routing/common-router-tasks.md @@ -35,7 +35,7 @@ Update the component to have an `input()` property matching the name of the para ```ts id = input.required() -hero = computed(() => this.service.getHero(id)); +hero = computed(() => this.service.getHero(id())); ```