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 + +
); })}