From d0ed76c1d6b13d6779e28bb0e80aea35e44cd793 Mon Sep 17 00:00:00 2001 From: Kam Date: Fri, 11 Sep 2026 13:31:25 +0300 Subject: [PATCH] docs: fix the broken housing location template in the first-app tutorial Step 11 of the first-app tutorial ships a `housing-location.ts` whose heading reads `{{ housingLocatio()).name }}`, a misspelled property followed by an extra parenthesis, so the step's source fails to compile with a template parser error. Step 10 reuses this directory as its answer. It came in with #61686, which migrated the tutorial to signal inputs. Use `housingLocation().name`, matching the rest of the template and every other step. --- .../src/app/housing-location/housing-location.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/tutorials/first-app/steps/11-details-page/src/app/housing-location/housing-location.ts b/adev/src/content/tutorials/first-app/steps/11-details-page/src/app/housing-location/housing-location.ts index 84de14b417f..5faee8bcc36 100644 --- a/adev/src/content/tutorials/first-app/steps/11-details-page/src/app/housing-location/housing-location.ts +++ b/adev/src/content/tutorials/first-app/steps/11-details-page/src/app/housing-location/housing-location.ts @@ -13,7 +13,7 @@ import {RouterLink} from '@angular/router'; alt="Exterior photo of {{ housingLocation().name }}" crossorigin /> -

{{ housingLocatio()).name }}

+

{{ housingLocation().name }}

{{ housingLocation().city }}, {{ housingLocation().state }}

`,