Skip to content

Commit

Permalink
Improved: Renamed method (#345).
Browse files Browse the repository at this point in the history
  • Loading branch information
ravilodhi committed Oct 25, 2024
1 parent 7f59b7b commit 4e3d426
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DxpProductIdentifier.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const productIdentificationPref = computed(() => productIdentificationStore.getP
const productIdentificationOptions = computed(() => productIdentificationStore.getProductIdentificationOptions);
onMounted(() => {
productIdentificationStore.prepareGoodIdentificationTypeOptions();
productIdentificationStore.prepareProductIdentifierOptions();
productIdentificationStore.getIdentificationPref(currentEComStore.value.productStoreId);
})
Expand Down
2 changes: 1 addition & 1 deletion src/store/productIdentification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const useProductIdentificationStore = defineStore('productIdentification'

this.productIdentificationPref = await productIdentificationContext.getProductIdentificationPref(eComStoreId)
},
async prepareGoodIdentificationTypeOptions() {
async prepareProductIdentifierOptions() {
//static identifications
const productIdentificationOptions = ["productId", "groupId", "groupName", "internalName", "parentProductName", "primaryProductCategoryName", "title"];

Expand Down

0 comments on commit 4e3d426

Please sign in to comment.