Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: data offer renaming #862

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ the detailed section referring to by linking pull requests or issues.

#### Patch

- Fixed wrong button label stating "Method Parameterization" instead of "Path Parameterization" ([#857](https://github.com/sovity/edc-ui/issues/857))
- Made Custom Http Method mandatory if the corresponding option is chosen ([#739](https://github.com/sovity/edc-ui/issues/739))

- Fixed wrong button label stating "Method Parameterization" instead of "Path
Parameterization" ([#857](https://github.com/sovity/edc-ui/issues/857))
- Made Custom Http Method mandatory if the corresponding option is chosen
([#739](https://github.com/sovity/edc-ui/issues/739))
- Fixed inconsistent renaming of "Contract Definition" to "Data Offer" after
i18n ([#831](https://github.com/sovity/edc-ui/issues/831))

### Deployment Migration Notes

_No special deployment migration steps required_


## [v4.1.5] - 2024-09-26

### Overview
Expand All @@ -45,11 +47,12 @@ MDS Patch release
([#820](https://github.com/sovity/edc-ui/issues/820))
- Fixed cropping of Contract Offer Ids on catalog browser page
([#795](https://github.com/sovity/edc-ui/issues/795))
- Used the `createDataOffer` endpoint to create an asset, policies and a contract definition in a single call
- Used the `createDataOffer` endpoint to create an asset, policies and a
contract definition in a single call
([#841](https://github.com/sovity/edc-ui/issues/841))
- Fixed config not being applied properly after a version upgrade
- Fixed Date to DateTime conversion issues when using operators less than `LT` and greater than `GT`
([#846](https://github.com/sovity/edc-ui/issues/846))
- Fixed Date to DateTime conversion issues when using operators less than `LT`
and greater than `GT` ([#846](https://github.com/sovity/edc-ui/issues/846))
- Added initial support for UI internationalization
([#680](https://github.com/sovity/edc-ui/issues/680))
- Implemented Data Offer wizard wording change request by MDS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="flex flex-row flex-wrap gap-[16px]">
<dashboard-kpi-card
class="flex-even-sized"
[label]="'dashboard_page.your_def' | translate"
[label]="'dashboard_page.your_data_offers' | translate"
[kpi]="data.numContractDefinitions"></dashboard-kpi-card>

<dashboard-kpi-card
Expand Down
1 change: 1 addition & 0 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@
"dashboard_page.trans_pro": "Transfer Processes",
"dashboard_page.transfer": "Transfer History",
"dashboard_page.your_assets": "Your Assets",
"dashboard_page.your_data_offers": "Your Data Offers",
"dashboard_page.your_def": "Your Contract Definitions",
"dashboard_page.your_pol": "Your Policies",
"edit_asset_page.title": "Edit Asset",
Expand Down
Loading