Skip to content

Commit

Permalink
Merge pull request #505 from bcgov/HD-25898
Browse files Browse the repository at this point in the history
fix: union info unavailable to non-public ECEs
  • Loading branch information
SoLetsDev authored Apr 16, 2024
2 parents 884bab4 + 1c2ed92 commit ea77882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/eceweApplication/EceweEligibility.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
</v-row>
</div>

<v-row v-if="(model.belongsToUnion == 1 && model.optInECEWE == 1 && model.publicSector == 1 && languageYearLabel != programYearTypes.HISTORICAL) || (model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel == programYearTypes.HISTORICAL) || isLoading" class="justify-center">
<v-row v-if="(model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel != programYearTypes.HISTORICAL) || (model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel == programYearTypes.HISTORICAL) || isLoading" class="justify-center">
<v-card elevation="4" class="py-2 px-5 mx-2 mt-10 rounded-lg col-11">
<v-container>
<v-row v-if="isLoading">
Expand Down Expand Up @@ -179,7 +179,7 @@
</v-col>
</v-row>
</v-container>
<v-card v-if="(model.applicableSector == 100000001 && model.belongsToUnion == 1 && model.optInECEWE == 1 && model.publicSector == 1 && languageYearLabel != programYearTypes.HISTORICAL) || (model.applicableSector == 100000001 && model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel == programYearTypes.HISTORICAL) || isLoading" class="mx-2 mb-4 justify-center">
<v-card v-if="(model.applicableSector == 100000001 && model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel != programYearTypes.HISTORICAL) || (model.applicableSector == 100000001 && model.belongsToUnion == 1 && model.optInECEWE == 1 && languageYearLabel == programYearTypes.HISTORICAL) || isLoading" class="mx-2 mb-4 justify-center">
<v-row v-if="!isLoading" >
<v-col class="py-0">
<v-card-title class="py-0 noticeInfo">
Expand Down

0 comments on commit ea77882

Please sign in to comment.