From 4b58899df8e42305b11d49cd86d3415a491bdacb Mon Sep 17 00:00:00 2001 From: Per Djurner Date: Wed, 28 Sep 2016 20:28:45 -0400 Subject: [PATCH] docs(changelog): make it more clear that pipes also need to be added to the declarations array. (#8276) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3be81fbf51..60881da823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -339,7 +339,7 @@ Note: For details on NgModules you can read the Angular docs on them [here](http 6. Import and add each of your pages to the `declarations` array and the `entryComponents` array in `src/app/app.module.ts`. -7. Import and add each of your custom components to the `declarations` array in `src/app/app.module.ts`. +7. Import and add each of your custom components and pipes to the `declarations` array in `src/app/app.module.ts`. 8. Import and add each of your providers to the `providers` array in `src/app/app.module.ts`.