diff --git a/www/web/warpfood/templates/warpfood/view.html b/www/web/warpfood/templates/warpfood/view.html index 10471ab497b20152798da9d5923bdf76cf2eb27a..7c79182903f563d2f257a14030244ed02f5f71fd 100644 --- a/www/web/warpfood/templates/warpfood/view.html +++ b/www/web/warpfood/templates/warpfood/view.html @@ -174,7 +174,7 @@ function choose_food_product(name, size, price) { document.getElementById("id_article").value = name; document.getElementById("id_size").value = size; - document.getElementById("id_price").value = price; + document.getElementById("id_price").value = price.replace(/,/g, '.'); $('#product_modal').modal('hide') } </script>