@pronto-tools-and-more/components 12.9.0 → 12.10.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/main.js +21 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -94,9 +94,27 @@ var createCategoryFilter = (categoryId) => {
|
|
94
94
|
taxonomies: {
|
95
95
|
content: {
|
96
96
|
value: {
|
97
|
-
|
98
|
-
|
99
|
-
|
97
|
+
AND: [
|
98
|
+
{
|
99
|
+
type: {
|
100
|
+
value: "category"
|
101
|
+
}
|
102
|
+
},
|
103
|
+
{
|
104
|
+
OR: [
|
105
|
+
{
|
106
|
+
id: {
|
107
|
+
value: categoryId
|
108
|
+
}
|
109
|
+
},
|
110
|
+
{
|
111
|
+
parentId: {
|
112
|
+
value: categoryId
|
113
|
+
}
|
114
|
+
}
|
115
|
+
]
|
116
|
+
}
|
117
|
+
]
|
100
118
|
}
|
101
119
|
}
|
102
120
|
}
|