diff --git a/frontend/package.json b/frontend/package.json index 25d4dfd..d62d532 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@family-budget/frontend", - "version": "0.15.1", + "version": "0.15.2", "private": true, "type": "module", "scripts": { diff --git a/frontend/src/pages/PortfolioPage.tsx b/frontend/src/pages/PortfolioPage.tsx index 3acd78a..06f0b1e 100644 --- a/frontend/src/pages/PortfolioPage.tsx +++ b/frontend/src/pages/PortfolioPage.tsx @@ -84,7 +84,7 @@ export function PortfolioPage() {
Пополнения
{money.format(account.contributions / 100)}
Выводы
{money.format(account.withdrawals / 100)}
-
Купоны и дивиденды
{money.format(account.income / 100)}
+
Купоны, дивиденды и проценты
{money.format(account.income / 100)}
Комиссии
{money.format(account.fees / 100)}
Результат продаж
{money.format(account.realizedResult / 100)}
{account.unrealizedResult !== null &&
Нереализованный результат
{money.format(account.unrealizedResult / 100)}
}