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
parent
commit
44d344e338
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/access-table/access-table.component.html

1
CHANGELOG.md

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

2
apps/client/src/app/components/access-table/access-table.component.html

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

Loading…
Cancel
Save