v1.43.14 - FIX: Tamanho de fonte dos badges de categoria em Recorrentes e Futuras
This commit is contained in:
parent
e29eacf5c7
commit
76978fbcfc
10
CHANGELOG.md
10
CHANGELOG.md
@ -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/).
|
||||
|
||||
|
||||
## [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
|
||||
|
||||
### Changed
|
||||
|
||||
@ -1812,7 +1812,7 @@ const Reports = () => {
|
||||
<td>{t.description}</td>
|
||||
<td>
|
||||
{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>
|
||||
{t.category}
|
||||
</span>
|
||||
@ -2015,12 +2015,12 @@ const Reports = () => {
|
||||
<td>{tx.description}</td>
|
||||
<td>
|
||||
{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>
|
||||
{tx.category}
|
||||
</span>
|
||||
) : (
|
||||
<span className="badge bg-secondary">-</span>
|
||||
<span className="badge bg-secondary" style={{ fontSize: '0.75rem' }}>-</span>
|
||||
)}
|
||||
</td>
|
||||
<td className="text-slate-400">{tx.account}</td>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user