Skip to content

Commit

Permalink
fix(application requests): fix wrong role (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhigarg-bmw authored May 2, 2024
1 parent 4ebd73b commit ec31cc2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

- Partner Network - Improve Overlay of Company Data

### Bugfix

- Application Requests
- Company data overlay wrong role chipcard

## 2.0.0-RC4

### Feature
Expand Down
1 change: 1 addition & 0 deletions src/assets/locales/de/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
"roles": "Company Role(s)",
"activeParticipation": "Teilnehmer",
"appProvider": "App Anbieter",
"onboardingProvider": "Onboarding Service Anbieter",
"serviceProvider": "Service Anbieter",
"noinfo": "no data available",
"commercialRegisterNumber": "Handelsregisternummer",
Expand Down
1 change: 1 addition & 0 deletions src/assets/locales/en/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"roles": "Company Role(s)",
"activeParticipation": "Participant",
"appProvider": "App Provider",
"onboardingProvider": "Onboarding Service Provider",
"serviceProvider": "Service Provider",
"noinfo": "no data available",
"commercialRegisterNumber": "Commercial Register Number",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ const CompanyDetailOverlay = ({
)
} else if (str === 'APP_PROVIDER') {
return t('content.admin.registration-requests.overlay.appProvider')
} else if (str === 'ONBOARDING_SERVICE_PROVIDER') {
return t('content.admin.registration-requests.overlay.onboardingProvider')
} else {
return t('content.admin.registration-requests.overlay.serviceProvider')
}
Expand Down

0 comments on commit ec31cc2

Please sign in to comment.