Ajusta widgets do dashboard

This commit is contained in:
Felipe Coutinho
2026-06-13 11:04:54 -03:00
parent 4cbdddb12e
commit 833845b5cf
9 changed files with 114 additions and 35 deletions

View File

@@ -123,9 +123,14 @@ export function InvoiceListItem({ invoice, onPay }: InvoiceListItemProps) {
className="font-medium"
amount={share.amount}
/>
<PercentageChangeIndicator
value={share.percentageChange}
/>
{share.percentageChange !== null ? (
<span className="flex items-center gap-1 text-xs text-muted-foreground">
<PercentageChangeIndicator
value={share.percentageChange}
/>
<span>vs. mês ant.</span>
</span>
) : null}
</div>
</li>
))}