aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ng/filter/filter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/filter/filter.js b/src/ng/filter/filter.js
index 5c3c917b..be01b1b3 100644
--- a/src/ng/filter/filter.js
+++ b/src/ng/filter/filter.js
@@ -183,7 +183,7 @@ function filterFilter() {
})();
} else {
(function() {
- if (!expression[key]) return;
+ if (typeof(expression[key]) == 'undefined') { return; }
var path = key;
predicates.push(function(value) {
return search(getter(value,path), expression[path]);