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: add missing short name to form #1341

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
1 change: 1 addition & 0 deletions src/assets/locales/de/registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"companyHeading": "Firmendetails",
"companyMessage": "Unten finden Sie die Registrierungsdaten Ihres Unternehmens, die Ihnen von Ihrem Onboarding-Anbieter mitgeteilt wurden. Bitte überprüfen Sie die Details und fahren Sie mit der Auswahl der Unternehmensrolle unten fort, bevor Sie Ihre Registrierung absenden.",
"companyName": "Name der Firma",
"legalName": "Gesetzlicher Name (kurz)",
"bmw": "BMW AG",
"street": "Hausnummer",
"zip": "Postleitzahl",
Expand Down
1 change: 1 addition & 0 deletions src/assets/locales/en/registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"companyHeading": "Company Details",
"companyMessage": "Below you can find your company registration details shared by your onboarding provider. Please review the details and proceed to the Company Role selection below before submitting your registration.",
"companyName": "Company Name",
"legalName": "Legal Name (short)",
"bmw": "BMW AG",
"street": "Street & Number",
"zip": "ZIP",
Expand Down
1 change: 1 addition & 0 deletions src/components/pages/OSPConsent/CompanyDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ export const CompanyDetails = ({
const tableData: TableType = {
head: [t('osp.companyName'), companyDetails?.name ?? ''],
body: [
[t('osp.legalName'), companyDetails?.shortName ?? ''],
[
t('osp.street'),
`${companyDetails?.streetName ?? ''} ${companyDetails?.streetNumber ?? ''}`,
Expand Down
Loading