Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hausg committed Jan 7, 2021
1 parent a618c19 commit 3131821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apollo/queries/product/product_detail.gql
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ query getSingleProduct($id: ID!) {
related(first: 3) {
nodes {
name
slug
link
onSale
image {
Expand Down
2 changes: 1 addition & 1 deletion components/ProductLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</div>
<nuxt-link
:to="{
path: 'product/' + product.slug
path: '/product/' + product.slug
}"
class="soma-link"
></nuxt-link>
Expand Down

0 comments on commit 3131821

Please sign in to comment.