1212 <v-card-actions v-if =" icraStore.icraEligibilityStatus === 'Draft' || icraStore.icraEligibilityStatus === 'Active'" >
1313 <v-btn size =" large" variant =" flat" color =" warning" @click =" router.push('/icra-eligibility')" >
1414 <v-icon size =" large" icon =" mdi-arrow-right" />
15- Open ICRA eligibility
15+ Continue submission
1616 </v-btn >
17- <!-- <v-btn class="ma-0" size="large" variant="outlined" color="white" @click="$emit('cancel-application')">Cancel application</v-btn> -->
1817 </v-card-actions >
1918
2019 <!-- ICRA Eligibility status Submitted, Ready, In Progress, Pending Queue -->
@@ -39,6 +38,7 @@ import { defineComponent } from "vue";
3938
4039import { useIcraStore } from " @/store/icra" ;
4140import { useRouter } from " vue-router" ;
41+ import { formatDate } from " @/utils/format" ;
4242
4343export default defineComponent ({
4444 name: " IcraEligibilityCard" ,
@@ -66,7 +66,7 @@ export default defineComponent({
6666 case " InReview" :
6767 case " ReadyforReview" :
6868 case " Active" :
69- return " ICRA Eligibility in progress" ;
69+ return " Your submission to determine eligibility to apply with international certification is in progress" ;
7070 default :
7171 return " Apply with international certification" ;
7272 }
@@ -75,11 +75,10 @@ export default defineComponent({
7575 switch (this .icraStore .icraEligibilityStatus ) {
7676 case " Draft" :
7777 case " Active" :
78- return " Your ICRA eligibility application is in progress." ;
7978 case " Submitted" :
8079 case " InReview" :
8180 case " ReadyforReview" :
82- return " Your ICRA eligibility application has been submitted and is being reviewed. " ;
81+ return ` Started ${ formatDate ( this . icraStore . icraEligibility ?. createdOn || " " , " LLLL d, yyyy " )} ` ;
8382 default :
8483 return " Apply for ECE Five Year Certification if you are internationally certified in a country that regulates the ECE profession and do not have 500 hours work experience supervised by a Canadian-certified ECE." ;
8584 }
0 commit comments