v1.43.14 - FIX: Tamanho de fonte dos badges de categoria em Recorrentes e Futuras

This commit is contained in:
marcoitaloesp-ai 2025-12-16 17:08:45 +00:00 committed by GitHub
parent e29eacf5c7
commit 76978fbcfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 4 deletions

View File

@ -5,6 +5,16 @@ O formato segue [Keep a Changelog](https://keepachangelog.com/pt-BR/).
Este projeto adota [Versionamento Semântico](https://semver.org/pt-BR/). Este projeto adota [Versionamento Semântico](https://semver.org/pt-BR/).
## [1.43.14] - 2025-12-16
### Fixed
- **Relatórios - Badges de Categoria (Recorrentes e Futuras)**
- Adicionado `fontSize: '0.75rem'` aos badges de categoria
- Aplicado em:
* Transações Recorrentes
* Transações Futuras
- Agora todos os badges de categoria têm tamanho consistente
## [1.43.13] - 2025-12-16 ## [1.43.13] - 2025-12-16
### Changed ### Changed

View File

@ -1 +1 @@
1.43.13 1.43.14

View File

@ -1812,7 +1812,7 @@ const Reports = () => {
<td>{t.description}</td> <td>{t.description}</td>
<td> <td>
{t.category && ( {t.category && (
<span className="badge" style={{ background: t.category_color || '#6b7280' }}> <span className="badge" style={{ background: t.category_color || '#6b7280', fontSize: '0.75rem' }}>
<i className={`bi ${t.category_icon || 'bi-tag'} me-1`}></i> <i className={`bi ${t.category_icon || 'bi-tag'} me-1`}></i>
{t.category} {t.category}
</span> </span>
@ -2015,12 +2015,12 @@ const Reports = () => {
<td>{tx.description}</td> <td>{tx.description}</td>
<td> <td>
{tx.category ? ( {tx.category ? (
<span className="badge" style={{ background: tx.category_color || '#6b7280' }}> <span className="badge" style={{ background: tx.category_color || '#6b7280', fontSize: '0.75rem' }}>
<i className={`bi ${tx.category_icon || 'bi-tag'} me-1`}></i> <i className={`bi ${tx.category_icon || 'bi-tag'} me-1`}></i>
{tx.category} {tx.category}
</span> </span>
) : ( ) : (
<span className="badge bg-secondary">-</span> <span className="badge bg-secondary" style={{ fontSize: '0.75rem' }}>-</span>
)} )}
</td> </td>
<td className="text-slate-400">{tx.account}</td> <td className="text-slate-400">{tx.account}</td>