Skip to content

Commit

Permalink
fix string crop (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit authored Sep 20, 2024
1 parent 27c7b86 commit 2da28cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ the detailed section referring to by linking pull requests or issues.

#### Patch

- Fixed cropping of Contract Offer Ids on catalog browser page
([#795](https://github.com/sovity/edc-ui/issues/795))
- Used createDataOffer endpoint to create an asset, policies and a contract
definition in a single call
([#841](https://github.com/sovity/edc-ui/issues/841))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ let dataOffers: UiDataOffer[] = [
contractOffers: [
{
contractOfferId:
'Zmlyc3QtY2Q=:Zmlyc3QtYXNzZXQtMS4w:MjgzNTZkMTMtN2ZhYy00NTQwLTgwZjItMjI5NzJjOTc1ZWNi',
'dGVzdHRlc3R0ZXN0dGVzdHRlc3Q=:dGVzdHRlc3R0ZXN0dGVzdHRlc3Q=:MDE5MjA4ZWMtMjI0My03YmEyLWE5ZGYtYzRjZTZkZDEyYzAx',
policy: TestPolicies.connectorRestricted,
},
{
contractOfferId:
'Bmlyf3Qt62Q=:Zmlyc3QtYXNzZXQtMS4w:NigzNTZkMTMtN2ZhYy00NTQwLTgwZjItMjI5NzJjOTc1ZWNj',
'Zmlyc3QtY2Q=:Zmlyc3QtYXNzZXQtMS4w:MjgzNTZkMTMtN2ZhYy00NTQwLTgwZjItMjI5NzJjOTc1ZWNi',
policy: TestPolicies.warnings,
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class ContractOfferMiniListComponent {
label: 'Contract Offer Id',
text: this.data.contractOffers.find((it) => it.contractOfferId == id)
?.contractOfferId,
additionalClasses: 'min-h-fit h-fit break-all',
},
];
}
Expand Down

0 comments on commit 2da28cf

Please sign in to comment.