From 88fa05d5b82140e7060ca6bbe727c3fccc5cee11 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Thu, 27 Aug 2026 10:37:04 -0300 Subject: [PATCH] style(analysis): show raw values inline instead of below percentage --- .../features/analysis/components/MonthlyVariationTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx index 88c5840..b1d7463 100644 --- a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx +++ b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx @@ -96,12 +96,12 @@ function VariationIndicator({ if (prev !== null && current !== null) { return ( -
+ {indicator} {formatPrice(prev)} → {formatPrice(current)} -
+ ); }