diff --git a/client-app/shared/layout/components/search-bar/_internal/search-bar-product-card.vue b/client-app/shared/layout/components/search-bar/_internal/search-bar-product-card.vue index e44009356..d9998b48a 100644 --- a/client-app/shared/layout/components/search-bar/_internal/search-bar-product-card.vue +++ b/client-app/shared/layout/components/search-bar/_internal/search-bar-product-card.vue @@ -8,7 +8,7 @@ {{ product.name }} - + @@ -29,5 +29,7 @@ interface IProps { defineEmits(); const props = defineProps(); +const price = computed(() => (props.product.hasVariations ? props.product.minVariationPrice : props.product.price)); + const link = computed(() => getProductRoute(props.product.id, props.product.slug));