From 1130c8f6d9ce00bce3b289edb54bc887ef6d1edb Mon Sep 17 00:00:00 2001 From: Oskar Hurst Date: Fri, 31 Oct 2025 22:12:24 +0000 Subject: [PATCH] add Latest Forecast row --- .../products/products-table/products-table-row.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app-pages/products/products-table/products-table-row.js b/src/app-pages/products/products-table/products-table-row.js index 27512ac..ec956ec 100644 --- a/src/app-pages/products/products-table/products-table-row.js +++ b/src/app-pages/products/products-table/products-table-row.js @@ -135,6 +135,14 @@ export default connect( addSuffix: true, })} + {product.last_forecast_version != null ? ( +
+ Latest Forecast:{' '} + {formatDistanceToNow(new Date(product.last_forecast_version), { + addSuffix: true, + })} +
+ ) : null} ) : (
Coming Soon