refactor(pipes): removed pipes from properties
BREAKING CHANGE: This PR remove an ability to use pipes in the properties config. Instead, inject the pipe registry.
This commit is contained in:
@ -147,8 +147,7 @@ export class DirectiveParser implements CompileStep {
|
||||
|
||||
// Bindings are optional, so this binding only needs to be set up if an expression is given.
|
||||
if (isPresent(bindingAst)) {
|
||||
var fullExpAstWithBindPipes = this._parser.addPipes(bindingAst, pipes);
|
||||
directiveBinderBuilder.bindProperty(dirProperty, fullExpAstWithBindPipes);
|
||||
directiveBinderBuilder.bindProperty(dirProperty, bindingAst);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user