Skip to content

Commit a46405e

Browse files
committed
Add content to reference declarations
1 parent 71909f0 commit a46405e

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/components/reference/inputs/EceCharacterReferenceDeclaration.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414
{{ certificationType }}. We'll review your reference when assessing if the applicant is eligible for certification.
1515
</div>
1616
<br />
17+
<p>
18+
<b>
19+
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.applicantFirstName, wizardStore.wizardData.applicantLastName) }}. If
20+
you are not {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}, please select "No"
21+
below and “Other” on the following page.
22+
</b>
23+
</p>
24+
<br />
1725

1826
<h2>Information you'll need</h2>
1927
<div>

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/components/reference/inputs/EceWorkExperienceReferenceDeclaration.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414
{{ certificationType }}. We'll review your reference when assessing if the applicant is eligible for certification.
1515
</p>
1616
<br />
17+
<p>
18+
<b>
19+
This reference request is for {{ cleanPreferredName(wizardStore.wizardData.applicantFirstName, wizardStore.wizardData.applicantLastName) }}. If
20+
you are not {{ cleanPreferredName(wizardStore.wizardData.referenceFirstName, wizardStore.wizardData.referenceLastName) }}, please select "No"
21+
below and “Other” on the following page.
22+
</b>
23+
</p>
24+
<br />
1725

1826
<h2 class="mb-5">Information you'll need</h2>
1927
<p>

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/store/wizard.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ export const useWizardStore = defineStore("wizard", {
135135
this.setWizardData({
136136
applicantFirstName: portalInvitation.applicantFirstName,
137137
applicantLastName: portalInvitation.applicantLastName,
138+
referenceFirstName: portalInvitation.referenceFirstName,
139+
referenceLastName: portalInvitation.referenceLastName,
138140
inviteType: portalInvitation.inviteType,
139141
certificationTypes: portalInvitation.certificationTypes,
140142
[wizard.steps.review.form.inputs.confirmProvidedInformationIsRight.id]: false,
@@ -150,6 +152,8 @@ export const useWizardStore = defineStore("wizard", {
150152
this.setWizardData({
151153
applicantFirstName: portalInvitation.applicantFirstName,
152154
applicantLastName: portalInvitation.applicantLastName,
155+
referenceFirstName: portalInvitation.referenceFirstName,
156+
referenceLastName: portalInvitation.referenceLastName,
153157
inviteType: portalInvitation.inviteType,
154158
certificationTypes: portalInvitation.certificationTypes,
155159
workExperienceReferenceHours: portalInvitation.workExperienceReferenceHours,
@@ -168,6 +172,8 @@ export const useWizardStore = defineStore("wizard", {
168172
this.setWizardData({
169173
applicantFirstName: portalInvitation.applicantFirstName,
170174
applicantLastName: portalInvitation.applicantLastName,
175+
referenceFirstName: portalInvitation.referenceFirstName,
176+
referenceLastName: portalInvitation.referenceLastName,
171177
inviteType: portalInvitation.inviteType,
172178
certificationTypes: portalInvitation.certificationTypes,
173179
workExperienceReferenceHours: portalInvitation.workExperienceReferenceHours,

0 commit comments

Comments
 (0)