Skip to content

Commit 300ae00

Browse files
authored
Merge pull request #297 from scottyzen/dev
Dev
2 parents 7959451 + c866e5a commit 300ae00

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

package-lock.json

Lines changed: 18 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"sharp": "0.32.6"
3131
},
3232
"optionalDependencies": {
33-
"@rollup/rollup-linux-x64-gnu": "4.40.1"
33+
"@rollup/rollup-linux-x64-gnu": "4.40.2"
3434
}
3535
}

woonuxt_base/app/components/filtering/Filters.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ const { storeSettings } = useAppConfig();
1010
const { hideCategories } = defineProps({ hideCategories: { type: Boolean, default: false } });
1111
1212
const globalProductAttributes = (runtimeConfig?.public?.GLOBAL_PRODUCT_ATTRIBUTES as WooNuxtFilter[]) || [];
13-
const taxonomies = globalProductAttributes.map((attr) => attr?.slug?.toUpperCase().replace('_', '')) as TaxonomyEnum[];
13+
const taxonomies = globalProductAttributes.map((attr) => attr?.slug?.toUpperCase().replace(/_/g, '')) as TaxonomyEnum[];
14+
1415
const { data } = await useAsyncGql('getAllTerms', { taxonomies: [...taxonomies, TaxonomyEnum.PRODUCTCATEGORY] });
1516
const terms = data.value?.terms?.nodes;
1617

woonuxt_base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woonuxt",
3-
"version": "4.4.12",
3+
"version": "4.4.13",
44
"main": "./nuxt.config.ts",
55
"type": "module"
66
}

0 commit comments

Comments
 (0)