[filters] [fix] use get_value method of each filter
This commit is contained in:
parent
f141a929ef
commit
71c7a512b2
1 changed files with 2 additions and 3 deletions
|
|
@ -70,9 +70,8 @@ wn.ui.FilterList = Class.extend({
|
|||
get_filters: function() {
|
||||
// get filter values as dict
|
||||
var values = [];
|
||||
$.each(this.filters, function(i, f) {
|
||||
if(f.field)
|
||||
values.push(f.get_parsed_value());
|
||||
$.each(this.filters, function(i, filter) {
|
||||
values.push(filter.get_value());
|
||||
})
|
||||
return values;
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue