Browse Source

Bugfix/footer row style of accounts table component (#5826)

* Fix style of footer row

* Update changelog
pull/5787/head
Thomas Kaul 6 days ago
committed by GitHub
parent
commit
a872770b7c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 6
      libs/ui/src/lib/accounts-table/accounts-table.component.html

4
CHANGELOG.md

@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Moved the _Prisma Configuration File_ from `prisma.config.ts` to `.config/prisma.ts` - Moved the _Prisma Configuration File_ from `prisma.config.ts` to `.config/prisma.ts`
- Upgraded `prisma` from version `6.17.1` to `6.18.0` - Upgraded `prisma` from version `6.17.1` to `6.18.0`
### Fixed
- Fixed the style in the footer row of the accounts table
## 2.210.1 - 2025-10-22 ## 2.210.1 - 2025-10-22
### Added ### Added

6
libs/ui/src/lib/accounts-table/accounts-table.component.html

@ -320,11 +320,7 @@
</button> </button>
</mat-menu> </mat-menu>
</td> </td>
<td <td *matFooterCellDef class="px-1" mat-footer-cell></td>
*matFooterCellDef
class="d-none d-lg-table-cell px-1"
mat-footer-cell
></td>
</ng-container> </ng-container>
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> <tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>

Loading…
Cancel
Save