diff --git a/public/viewjs/components/productcard.js b/public/viewjs/components/productcard.js
index f181127f..126c9705 100644
--- a/public/viewjs/components/productcard.js
+++ b/public/viewjs/components/productcard.js
@@ -6,11 +6,13 @@ Grocy.Components.ProductCard.Refresh = function(productId)
function(productDetails)
{
var stockAmount = productDetails.stock_amount || '0';
+ var stockValue = productDetails.stock_value || '0';
var stockAmountOpened = productDetails.stock_amount_opened || '0';
$('#productcard-product-name').text(productDetails.product.name);
$('#productcard-product-description').html(productDetails.product.description);
$('#productcard-product-stock-amount').text(stockAmount);
$('#productcard-product-stock-qu-name').text(__n(stockAmount, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural));
+ $('#productcard-product-stock-value').text(stockValue);
$('#productcard-product-last-purchased').text((productDetails.last_purchased || '2999-12-31').substring(0, 10));
$('#productcard-product-last-purchased-timeago').attr("datetime", productDetails.last_purchased || '2999-12-31');
$('#productcard-product-last-used').text((productDetails.last_used || '2999-12-31').substring(0, 10));
diff --git a/views/components/productcard.blade.php b/views/components/productcard.blade.php
index d4605d4f..72690694 100644
--- a/views/components/productcard.blade.php
+++ b/views/components/productcard.blade.php
@@ -21,7 +21,8 @@
{{ $__t('Show more') }}
- {{ $__t('Stock amount') . ' / ' . $__t('Quantity unit') }}:
+ {{ $__t('Stock amount') . ' / ' . $__t('Quantity unit') }}:
+ {{ $__t('Stock Value') }}:
@if(GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING){{ $__t('Location') }}:
@endif
{{ $__t('Last purchased') }}: