diff --git a/src/ng/filter/filter.js b/src/ng/filter/filter.js index be01b1b3a834..b55e11f49707 100644 --- a/src/ng/filter/filter.js +++ b/src/ng/filter/filter.js @@ -129,7 +129,7 @@ function filterFilter() { default: comperator = function(obj, text) { text = (''+text).toLowerCase(); - return (''+obj).toLowerCase().indexOf(text) > -1 + return (''+obj).toLowerCase().indexOf(text) > -1; }; } var search = function(obj, text){