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

ECER-3993: Renewal problem #801

Merged
merged 1 commit into from
Jan 6, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
<v-col v-if="certificationStore.latestCertificateStatus == 'Active'" cols="12">
<Alert title="Do you have 500 hours of supervised work experience?">
You should
<a class="cursor-pointer text-decoration-underline" @click="applicationStore.draftApplication.certificationTypes = ['FiveYears']">
<a
class="cursor-pointer text-decoration-underline"
@click="
applicationStore.draftApplication.certificationTypes = ['FiveYears'];
applicationStore.draftApplication.applicationType = 'New';
"
>
apply for ECE Five Year certification
</a>
if you have completed 500 hours of work experience.
Expand Down Expand Up @@ -33,7 +39,13 @@
</p>
<p>
If you've completed 500 hours, you should apply for
<a class="cursor-pointer text-decoration-underline" @click="applicationStore.draftApplication.certificationTypes = ['FiveYears']">
<a
class="cursor-pointer text-decoration-underline"
@click="
applicationStore.draftApplication.certificationTypes = ['FiveYears'];
applicationStore.draftApplication.applicationType = 'New';
"
>
ECE Five Year certification
</a>
instead.
Expand Down
Loading