We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c5255 commit 4beaddcCopy full SHA for 4beaddc
aio/content/guide/upgrade.md
@@ -479,6 +479,15 @@ using the `downgradeComponent()` method. The result is an AngularJS
479
<code-example path="upgrade-module/src/app/downgrade-static/app.module.ts" region="downgradecomponent" header="app.module.ts">
480
</code-example>
481
482
+<div class="alert is-helpful">
483
+
484
+By default, Angular change detection will also run on the component for every
485
+AngularJS `$digest` cycle. If you wish to only have change detection run when
486
+the inputs change, you can set `propagateDigest` to `false` when calling
487
+`downgradeComponent()`.
488
489
+</div>
490
491
Because `HeroDetailComponent` is an Angular component, you must also add it to the
492
`declarations` in the `AppModule`.
493
0 commit comments