From 120fd8cb68e37bd031e402e4982f5b46df1ca68d Mon Sep 17 00:00:00 2001 From: xyfy Date: Thu, 7 Nov 2019 15:01:48 +0800 Subject: [PATCH] Update Part-I.md fixed the layout component If this is not done here, the delete pop-up box in Chapter 2 will not appear --- docs/en/Tutorials/Angular/Part-I.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Tutorials/Angular/Part-I.md b/docs/en/Tutorials/Angular/Part-I.md index 88b5c8539e0..beb78fcd03a 100644 --- a/docs/en/Tutorials/Angular/Part-I.md +++ b/docs/en/Tutorials/Angular/Part-I.md @@ -401,7 +401,7 @@ import { BookListComponent } from './book-list/book-list.component'; const routes: Routes = [ { path: '', - component: BooksComponent, + component: ApplicationLayoutComponent, children: [{ path: '', component: BookListComponent }], }, ];