Browse Source
Bugfix/header alignment in admin platform and tag tables (#5908)
* Fix header alignment
* Update changelog
pull/5914/head^2
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-platform/admin-platform.component.html
-
apps/client/src/app/components/admin-tag/admin-tag.component.html
|
|
@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the style of the safe withdrawal rate selector in the _FIRE_ section (experimental) |
|
|
- Fixed the style of the safe withdrawal rate selector in the _FIRE_ section (experimental) |
|
|
|
|
|
- Improved the table headers’ alignment in the platform management of the admin control panel |
|
|
|
|
|
- Improved the table headers’ alignment in the tag management of the admin control panel |
|
|
|
|
|
|
|
|
## 2.214.0 - 2025-11-01 |
|
|
## 2.214.0 - 2025-11-01 |
|
|
|
|
|
|
|
|
|
|
|
@ -45,7 +45,7 @@ |
|
|
<ng-container matColumnDef="accounts"> |
|
|
<ng-container matColumnDef="accounts"> |
|
|
<th |
|
|
<th |
|
|
*matHeaderCellDef |
|
|
*matHeaderCellDef |
|
|
class="px-1" |
|
|
class="justify-content-end px-1" |
|
|
mat-header-cell |
|
|
mat-header-cell |
|
|
mat-sort-header="accountCount" |
|
|
mat-sort-header="accountCount" |
|
|
> |
|
|
> |
|
|
|
|
|
@ -38,7 +38,7 @@ |
|
|
<ng-container matColumnDef="activities"> |
|
|
<ng-container matColumnDef="activities"> |
|
|
<th |
|
|
<th |
|
|
*matHeaderCellDef |
|
|
*matHeaderCellDef |
|
|
class="px-1" |
|
|
class="justify-content-end px-1" |
|
|
mat-header-cell |
|
|
mat-header-cell |
|
|
mat-sort-header="activityCount" |
|
|
mat-sort-header="activityCount" |
|
|
> |
|
|
> |
|
|
|