use default value instead of '', fixes #2848
This commit is contained in:
parent
5bdc80a24f
commit
7516c940f5
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue