Browse Source
Task/improve grantee display in access table (#7135)
* Do not wrap grantee
* Update changelog
pull/7139/head
Thomas Kaul
4 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
|
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the grantee display in the access table to share the portfolio |
|
|
|
- Improved the country mapping for data providers |
|
|
|
- Upgraded `bull-board` from version `7.2.1` to `8.0.1` |
|
|
|
- Upgraded `prettier` from version `3.8.3` to `3.8.4` |
|
|
|
|
|
|
|
@ -9,7 +9,7 @@ |
|
|
|
|
|
|
|
<ng-container matColumnDef="grantee"> |
|
|
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Grantee</th> |
|
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
|
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell> |
|
|
|
{{ element.grantee }} |
|
|
|
</td> |
|
|
|
</ng-container> |
|
|
|
|