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
parent
commit
51e9a3c807
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/accounts-table/accounts-table.component.html

1
CHANGELOG.md

@ -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`)

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

@ -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"

Loading…
Cancel
Save