From c675d2b82024e4b03f7316539f26f4cfa070b2c3 Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Tue, 21 May 2024 12:21:31 -0400 Subject: [PATCH] docs: make entire tutorial local to match offline intention for first-app tutorial --- adev/src/content/tutorials/first-app/intro/config.json | 2 +- .../tutorials/first-app/steps/01-hello-world/config.json | 2 +- .../tutorials/first-app/steps/02-HomeComponent/config.json | 2 +- .../tutorials/first-app/steps/03-HousingLocation/config.json | 2 +- .../content/tutorials/first-app/steps/04-interfaces/config.json | 2 +- .../src/content/tutorials/first-app/steps/05-inputs/config.json | 2 +- .../tutorials/first-app/steps/06-property-binding/config.json | 2 +- .../first-app/steps/07-dynamic-template-values/config.json | 2 +- adev/src/content/tutorials/first-app/steps/08-ngFor/config.json | 2 +- .../content/tutorials/first-app/steps/09-services/config.json | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/adev/src/content/tutorials/first-app/intro/config.json b/adev/src/content/tutorials/first-app/intro/config.json index d60096b3ca1..25a7d61df70 100644 --- a/adev/src/content/tutorials/first-app/intro/config.json +++ b/adev/src/content/tutorials/first-app/intro/config.json @@ -1,6 +1,6 @@ { "title": "Your first Angular app", - "type": "editor", + "type": "local", "src": "../steps/14-http/src", "nextTutorial": "learn-angular", "openFiles": ["src/app/app.component.ts"] diff --git a/adev/src/content/tutorials/first-app/steps/01-hello-world/config.json b/adev/src/content/tutorials/first-app/steps/01-hello-world/config.json index e6bfeed95b1..5c8e11bf3e3 100644 --- a/adev/src/content/tutorials/first-app/steps/01-hello-world/config.json +++ b/adev/src/content/tutorials/first-app/steps/01-hello-world/config.json @@ -1,6 +1,6 @@ { "title": "Hello world!", - "type": "editor", + "type": "local", "answerSrc": "../02-HomeComponent/src", "openFiles": ["src/app/app.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/02-HomeComponent/config.json b/adev/src/content/tutorials/first-app/steps/02-HomeComponent/config.json index 2b801039e39..eac9489fcb9 100644 --- a/adev/src/content/tutorials/first-app/steps/02-HomeComponent/config.json +++ b/adev/src/content/tutorials/first-app/steps/02-HomeComponent/config.json @@ -1,6 +1,6 @@ { "title": "Create home component", - "type": "editor", + "type": "local", "answerSrc": "../03-HousingLocation/src", "openFiles": ["src/app/app.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/03-HousingLocation/config.json b/adev/src/content/tutorials/first-app/steps/03-HousingLocation/config.json index 0549b4ac728..d11fb48765f 100644 --- a/adev/src/content/tutorials/first-app/steps/03-HousingLocation/config.json +++ b/adev/src/content/tutorials/first-app/steps/03-HousingLocation/config.json @@ -1,6 +1,6 @@ { "title": "Create housing location component", - "type": "editor", + "type": "local", "answerSrc": "../04-interfaces/src", "openFiles": ["src/app/home/home.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/04-interfaces/config.json b/adev/src/content/tutorials/first-app/steps/04-interfaces/config.json index 3cb7a1325c2..de078d88f81 100644 --- a/adev/src/content/tutorials/first-app/steps/04-interfaces/config.json +++ b/adev/src/content/tutorials/first-app/steps/04-interfaces/config.json @@ -1,6 +1,6 @@ { "title": "Create an interface", - "type": "editor", + "type": "local", "answerSrc": "../05-inputs/src", "openFiles": ["src/app/home/home.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/05-inputs/config.json b/adev/src/content/tutorials/first-app/steps/05-inputs/config.json index 2908f719ea3..3563cdefc0b 100644 --- a/adev/src/content/tutorials/first-app/steps/05-inputs/config.json +++ b/adev/src/content/tutorials/first-app/steps/05-inputs/config.json @@ -1,6 +1,6 @@ { "title": "Add inputs to components", - "type": "editor", + "type": "local", "answerSrc": "../06-property-binding/src", "openFiles": ["src/app/housing-location/housing-location.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/06-property-binding/config.json b/adev/src/content/tutorials/first-app/steps/06-property-binding/config.json index 40bb487d630..47b08d04428 100644 --- a/adev/src/content/tutorials/first-app/steps/06-property-binding/config.json +++ b/adev/src/content/tutorials/first-app/steps/06-property-binding/config.json @@ -1,6 +1,6 @@ { "title": "Add property binding to components", - "type": "editor", + "type": "local", "answerSrc": "../07-dynamic-template-values/src", "openFiles": ["src/app/home/home.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/07-dynamic-template-values/config.json b/adev/src/content/tutorials/first-app/steps/07-dynamic-template-values/config.json index a2fd1893733..325d269f160 100644 --- a/adev/src/content/tutorials/first-app/steps/07-dynamic-template-values/config.json +++ b/adev/src/content/tutorials/first-app/steps/07-dynamic-template-values/config.json @@ -1,6 +1,6 @@ { "title": "Add dynamic values to templates", - "type": "editor", + "type": "local", "answerSrc": "../08-ngFor/src", "openFiles": ["src/app/housing-location/housing-location.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/08-ngFor/config.json b/adev/src/content/tutorials/first-app/steps/08-ngFor/config.json index bc9b5928ae4..08f481c4389 100644 --- a/adev/src/content/tutorials/first-app/steps/08-ngFor/config.json +++ b/adev/src/content/tutorials/first-app/steps/08-ngFor/config.json @@ -1,6 +1,6 @@ { "title": "Use *ngFor in templates", - "type": "editor", + "type": "local", "answerSrc": "../09-services/src", "openFiles": ["src/app/home/home.component.ts"] } diff --git a/adev/src/content/tutorials/first-app/steps/09-services/config.json b/adev/src/content/tutorials/first-app/steps/09-services/config.json index e492a6550fa..6522b1b6f92 100644 --- a/adev/src/content/tutorials/first-app/steps/09-services/config.json +++ b/adev/src/content/tutorials/first-app/steps/09-services/config.json @@ -1,6 +1,6 @@ { "title": "Angular services", - "type": "editor", + "type": "local", "answerSrc": "../10-routing/src", "openFiles": ["src/app/home/home.component.ts"] }