diff --git a/frontend/src/components/config/models/ConfigConfig.ts b/frontend/src/components/config/models/ConfigConfig.ts index 96fd3796..e1a59f61 100644 --- a/frontend/src/components/config/models/ConfigConfig.ts +++ b/frontend/src/components/config/models/ConfigConfig.ts @@ -7,6 +7,7 @@ export const configDefinition: FullFormConfig = [ {title: 'config.company.title'}, 'company.name', 'company.address', + 'company.postalCode', 'company.city', {key: 'company.telephone', component: 'phone'}, {key: 'company.email', component: 'email'}, diff --git a/frontend/src/trans.en.ts b/frontend/src/trans.en.ts index 6e8a507d..92968295 100644 --- a/frontend/src/trans.en.ts +++ b/frontend/src/trans.en.ts @@ -188,6 +188,7 @@ export const trans = { name: 'Company name', address: 'Street', city: 'City', + postalCode: 'Postal code', telephone: 'Phone nr', email: 'Email', iban: 'IBAN', diff --git a/frontend/src/trans.nl.ts b/frontend/src/trans.nl.ts index 9976ae22..e84972ee 100644 --- a/frontend/src/trans.nl.ts +++ b/frontend/src/trans.nl.ts @@ -188,6 +188,7 @@ export const trans = { name: 'Bedrijfsnaam', address: 'Straat', city: 'Stad', + postalCode: 'Postcode', telephone: 'Telefoon nr', email: 'Email', iban: 'IBAN',