Browse Source
Task/improve account name display in accounts table (#7044)
* Do not wrap account name
* Update changelog
pull/7053/head^2
Thomas Kaul
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/accounts-table/accounts-table.component.html
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
- Improved the styling of the checkboxes to consistently use the primary color in their states |
|
|
- Improved the styling of the checkboxes to consistently use the primary color in their states |
|
|
|
|
|
- Improved the account name display in the accounts table |
|
|
- Improved the name display in the activities table |
|
|
- Improved the name display in the activities table |
|
|
- Improved the user id display in the users table of the admin control panel |
|
|
- Improved the user id display in the users table of the admin control panel |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
@ -49,7 +49,7 @@ |
|
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header="name"> |
|
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header="name"> |
|
|
<ng-container i18n>Name</ng-container> |
|
|
<ng-container i18n>Name</ng-container> |
|
|
</th> |
|
|
</th> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell> |
|
|
@if (element.platform?.url) { |
|
|
@if (element.platform?.url) { |
|
|
<gf-entity-logo |
|
|
<gf-entity-logo |
|
|
class="d-inline d-sm-none mr-1" |
|
|
class="d-inline d-sm-none mr-1" |
|
|
|