use default value instead of '', fixes #2848

This commit is contained in:
j 2015-10-12 15:41:11 +01:00
parent 5bdc80a24f
commit 7516c940f5

View file

@ -299,7 +299,7 @@ Ox.Filter = function(options, self) {
condition = {
key: key.id,
operator: condition.operator,
value: ''
value: self.defaultValue[key.type]
};
if (isGroup) {
Ox.Log('Form', 'isGroup', self.options.value.operator)