Skip to content

Commit

Permalink
Fix price issue when price is > 999
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviocopes committed Apr 30, 2016
1 parent c7ca31e commit ffeb010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/partials/shoppingcart_core_detail_item.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
var currentProduct = {
title: "{{ page.header.title }}",
id: "{{ md5(page.header.title) }}",
price: "{{ page.header.price|number_format(2, '.', ',') }}",
price: "{{ page.header.price }}",
defaultPhoto: "{{ shoppingcart_image|url_encode }}",
type: "{{ page.header.type }}",
url: "{{ page.url|url_encode }}",
Expand Down

0 comments on commit ffeb010

Please sign in to comment.