Browse Source
Task/improve alias display in access table (#7158)
* Do not wrap alias
* Update changelog
pull/7160/head
Thomas Kaul
2 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
-
apps/client/src/app/components/access-table/access-table.component.html
|
|
|
@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the alias display in the access table to share the portfolio |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
<table class="gf-table w-100" mat-table [dataSource]="dataSource"> |
|
|
|
<ng-container matColumnDef="alias"> |
|
|
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Alias</th> |
|
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
|
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell> |
|
|
|
{{ element.alias }} |
|
|
|
</td> |
|
|
|
</ng-container> |
|
|
|
|