Skip to content

Commit fe58346

Browse files
authored
Merge pull request #1574 from bcgov/fix/icra-ready-for-assessment
quick fix icra ready for assessment shouldn't show an odd screen for …
2 parents 6cb29cf + 13bbccf commit fe58346

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/components/IcraEligibilityCard.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
v-if="
2222
icraStore.icraEligibilityStatus === 'Submitted' ||
2323
icraStore.icraEligibilityStatus === 'ReadyforReview' ||
24-
icraStore.icraEligibilityStatus === 'InReview'
24+
icraStore.icraEligibilityStatus === 'InReview' ||
25+
icraStore.icraEligibilityStatus === 'ReadyforAssessment'
2526
"
2627
>
2728
<v-btn variant="flat" size="large" color="warning" @click="handleManageIcraEligibility">
@@ -64,6 +65,7 @@ export default defineComponent({
6465
case "Submitted":
6566
case "InReview":
6667
case "ReadyforReview":
68+
case "ReadyforAssessment":
6769
return "Your eligibility to apply with international certification is in review";
6870
case "Draft":
6971
case "Active":
@@ -79,6 +81,7 @@ export default defineComponent({
7981
case "Submitted":
8082
case "InReview":
8183
case "ReadyforReview":
84+
case "ReadyforAssessment":
8285
return `Started ${formatDate(this.icraStore.icraEligibility?.createdOn || "", "LLLL d, yyyy")}`;
8386
default:
8487
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.";

0 commit comments

Comments
 (0)