Open wardbell opened 7 years ago
This will be fixed in patch to Angular v.2.4.x when compiler normalizeLoadedTemplate line changes from false to true. Already fixed in v.4.x
normalizeLoadedTemplate
false
true
Bad:
*/ DirectiveNormalizer.prototype.normalizeLoadedTemplate = function (prenomData, template, templateAbsUrl) { ... stringify(prenomData.componentType), false, ...
Good:
*/ DirectiveNormalizer.prototype.normalizeLoadedTemplate = function (prenomData, template, templateAbsUrl) { ... stringify(prenomData.componentType), true, ...
the missing commit in the 2.x branch is https://github.com/angular/angular/commit/e74d8aa
This will be fixed in patch to Angular v.2.4.x when compiler
normalizeLoadedTemplate
line changes fromfalse
totrue
. Already fixed in v.4.xBad:
Good: