fix: use short month names

This commit is contained in:
Vasily Zubarev
2025-08-02 22:00:59 +02:00
parent 280adabc71
commit 7aa9d25275
3 changed files with 3 additions and 5 deletions

View File

@@ -121,7 +121,7 @@ export function IncomeExpenseGraph({ data, defaultCurrency }: IncomeExpenseGraph
onClick={() => item.income > 0 && handleBarClick(item, "income")}
>
{/* Period label above income bars */}
<div className="text-sm font-bold text-gray-700 break-all mb-2 text-center">
<div className="text-sm font-bold text-gray-700 break-words mb-2 text-center">
{formatPeriodLabel(item.period, item.date)}
</div>