diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ec440..974b7b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ O formato segue [Keep a Changelog](https://keepachangelog.com/pt-BR/). Este projeto adota [Versionamento Semântico](https://semver.org/pt-BR/). +## [1.34.3] - 2025-12-15 + +### Fixed +- **Relatório de Passivos** - Corrigida formatação da data da próxima parcela + - Data agora usa `formatDate()` para exibição legível + - Corrige exibição de timestamp ISO bruto (ex: "2026-01-05T00:00:00.000000Z") + - Formato final: "05/01/2026" (localizado conforme idioma) + ## [1.34.2] - 2025-12-15 ### Fixed diff --git a/VERSION b/VERSION index 00e952d..7e3856f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.34.2 +1.34.3 diff --git a/frontend/src/pages/Reports.jsx b/frontend/src/pages/Reports.jsx index 307e01e..cedaec9 100644 --- a/frontend/src/pages/Reports.jsx +++ b/frontend/src/pages/Reports.jsx @@ -33,7 +33,7 @@ ChartJS.register( const Reports = () => { const { t } = useTranslation(); - const { currency } = useFormatters(); + const { currency, formatDate } = useFormatters(); const [activeTab, setActiveTab] = useState('summary'); const [loading, setLoading] = useState(true); @@ -1190,7 +1190,7 @@ const Reports = () => {
{t('reports.nextInstallment')}:
- {liability.next_installment.due_date} + {formatDate(liability.next_installment.due_date)} {currency(liability.next_installment.amount, liability.currency)}