Skip to content

Commit c9657bd

Browse files
committed
refactor(core): avoid using def.signal during component id computation (angular#50238)
This commit updates the code in 16.0.x branch to avoid using the `def.signals` field on a component, while calculating component id. The `signal` field was introduced later and will be available in 16.1.0. PR Close angular#50238
1 parent 868723c commit c9657bd

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

packages/core/src/render3/definition.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,6 @@ function getComponentId(componentDef: ComponentDef<unknown>): string {
689689
componentDef.decls,
690690
componentDef.encapsulation,
691691
componentDef.standalone,
692-
componentDef.signals,
693692
componentDef.exportAs,
694693
componentDef.inputs,
695694
componentDef.outputs,

0 commit comments

Comments
 (0)