Skip to content

Commit dc68965

Browse files
committed
fix bug
1 parent 715c9c6 commit dc68965

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

jquery.filters.js

+5
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,11 @@
11251125
selectedValue;
11261126

11271127
$.each(keyValueData, function(key, values){
1128+
if (!key.startsWith(backofficeFiltersUrlPrefix)) {
1129+
//unrelated key
1130+
return true
1131+
}
1132+
11281133
if (!$.isArray(values)) {
11291134
values = [values]
11301135
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backoffice-filters",
3-
"version": "0.2.10",
3+
"version": "0.3.0",
44
"description": "Easy Setup - filters rending out of the box for backoffice use.",
55
"main": "jquery.filters.js",
66
"scripts": {

0 commit comments

Comments
 (0)