diff --git a/aio/content/guide/upgrade.md b/aio/content/guide/upgrade.md index 93ec769c97..3293f4eb12 100644 --- a/aio/content/guide/upgrade.md +++ b/aio/content/guide/upgrade.md @@ -479,6 +479,15 @@ using the `downgradeComponent()` method. The result is an AngularJS +
+ +By default, Angular change detection will also run on the component for every +AngularJS `$digest` cycle. If you wish to only have change detection run when +the inputs change, you can set `propagateDigest` to `false` when calling +`downgradeComponent()`. + +
+ Because `HeroDetailComponent` is an Angular component, you must also add it to the `declarations` in the `AppModule`.