From c2292a8e1f51b5d8be59c7b88130a4a7bdf30628 Mon Sep 17 00:00:00 2001 From: laurentbarontini Date: Mon, 29 Dec 2025 21:13:59 +0100 Subject: [PATCH] 29_12_25 --- src/App.jsx | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 3d41b05f..bf649a48 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -123,7 +123,7 @@ const kpis = [ title: "PNL ($)", value: defaultPnlAmount, trend: "+12% vs last month", - trendValue: 12, + trendValue: 4.4, icon: BarChart3, action: () => openInTryton("pnl.bi", [1], ['form']) }, @@ -255,9 +255,25 @@ export default function App() { {kpi.title} {kpi.value} - +
+ + {isPositive ? "+" : ""} + {kpi.trendValue}% + + + + this month + +
); })}