This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
FilterFilter nested expression support renders strict option useless #7323
Closed
Description
Since https://github.com/angular/angular.js/pull/6215/files#r9626594, passing true to strict in the filterFilter is no longer working when nested predicate object is used to filter nested properties of an object.
<div ng-repeat="it in items | filter:{ address: { country: 'Canuckistan'} }"></div>
is working
<div ng-repeat="it in items | filter:{ address: { country: 'Canuckistan'} }:true"></div>
is not.