@angular+core+15.2.9.patch 1.3 KB

1234567891011121314151617181920
  1. diff --git a/node_modules/@angular/core/fesm2020/core.mjs b/node_modules/@angular/core/fesm2020/core.mjs
  2. index 3e93015..9efcb96 100755
  3. --- a/node_modules/@angular/core/fesm2020/core.mjs
  4. +++ b/node_modules/@angular/core/fesm2020/core.mjs
  5. @@ -11053,13 +11053,13 @@ function findDirectiveDefMatches(tView, tNode) {
  6. if (isNodeMatchingSelectorList(tNode, def.selectors, /* isProjectionMode */ false)) {
  7. matches || (matches = []);
  8. if (isComponentDef(def)) {
  9. - if (ngDevMode) {
  10. + // if (ngDevMode) {
  11. assertTNodeType(tNode, 2 /* TNodeType.Element */, `"${tNode.value}" tags cannot be used as component hosts. ` +
  12. `Please use a different tag to activate the ${stringify(def.type)} component.`);
  13. if (isComponentHost(tNode)) {
  14. throwMultipleComponentError(tNode, matches.find(isComponentDef).type, def.type);
  15. }
  16. - }
  17. + // }
  18. // Components are inserted at the front of the matches array so that their lifecycle
  19. // hooks run before any directive lifecycle hooks. This appears to be for ViewEngine
  20. // compatibility. This logic doesn't make sense with host directives, because it