Skip to content

Commit

Permalink
fix: add beneficiary relationship
Browse files Browse the repository at this point in the history
  • Loading branch information
gparlakov committed Aug 1, 2024
1 parent db8604f commit 46794a2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions public/locales/bg/campaign-application.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"title": "Информация за кампанията",
"campaignTitle": "Име на кампанията",
"beneficiary": "Имена на бенефициента",
"beneficiaryRelationship": "Взаимоотношения с бенефициента",
"funds": "Необходима сума в лева",
"campaign-end": {
"title": "Желана крайна дата на кампанията:",
Expand Down
3 changes: 2 additions & 1 deletion public/locales/en/campaign-application.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
},
"application": {
"title": "Campaign Application",
"campaignTitle": "Campaign Title",
"campaignTitle": "Campaign title",
"beneficiary": "Beneficiary names",
"beneficiaryRelationship": "Beneficiary relationship",
"funds": "The required amount in leva",
"campaign-end": {
"title": "Desired campaign end date:",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default function CampaignApplicationForm({ person }: Props) {
description: '',
documents: [],
links: [],
organizerBeneficiaryRelationship: '',
organizerBeneficiaryRelationship: '-',
otherFinancialSources: '',
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ export default function CampaignApplication() {
autoComplete="name"
/>
</Grid>
<Grid item xs={12}>
<StyledFormTextField
label={t('steps.application.beneficiaryRelationship')}
type="text"
name="details.beneficiaryNames"
/>
</Grid>
<Grid item xs={12}>
<StyledFormTextField
label={t('steps.application.campaignTitle')}
Expand Down

0 comments on commit 46794a2

Please sign in to comment.