Skip to content

Commit

Permalink
fix: Display invited company name in OSP consent form (#1083)
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanGerada3 authored Sep 6, 2024
1 parent 35f03e3 commit 4ac2435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
- Fixed 'activeTab' conditions to load data for Tab-2(Registration Process) [#1050](https://github.com/eclipse-tractusx/portal-frontend/pull/1050)
- **App Release Process**:
- Fixed role upload does not work using Firefox [#1003](https://github.com/eclipse-tractusx/portal-frontend/pull/1003)
- **OSP Consent form**
- Display invited company name in OSP consent form (Previously hard coded with 'BMW') [#1083](https://github.com/eclipse-tractusx/portal-frontend/pull/1083)

## 2.2.0-RC2

Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/OSPConsent/CompanyDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export const CompanyDetails = ({
}

const tableData: TableType = {
head: [t('osp.companyName'), t('osp.bmw')],
head: [t('osp.companyName'), companyDetails?.name ?? ''],
body: [
[t('osp.street'), companyDetails?.streetName ?? ''],
[t('osp.zip'), companyDetails?.zipCode ?? ''],
Expand Down

0 comments on commit 4ac2435

Please sign in to comment.