Skip to content

Commit 48baa17

Browse files
authored
Merge pull request #2065 from bcgov/feature/fedBand
Small fix for FED_BAND.
2 parents 3b34cc4 + e61dd42 commit 48baa17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/sdcCollection/sdcSchoolCollection/StepSevenSubmitData.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class="mb-4"
2222
>
2323
<v-col
24-
v-if="getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND'"
24+
v-if="getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND' || getSchoolCategory() === 'FED_BAND'"
2525
cols="12"
2626
>
2727
<p>
@@ -55,7 +55,7 @@
5555
density="compact"
5656
type="success"
5757
variant="tonal"
58-
:text=" getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND' ? 'Congratulations! The 1701 data has been submitted. Any additional changes to 1701 must be coordinated through the Ministry.' : 'Congratulations! The 1701 data has been submitted. Any additional changes to 1701 must be coordinated through your district.'"
58+
:text=" getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND' || getSchoolCategory() === 'FED_BAND' ? 'Congratulations! The 1701 data has been submitted. Any additional changes to 1701 must be coordinated through the Ministry.' : 'Congratulations! The 1701 data has been submitted. Any additional changes to 1701 must be coordinated through your district.'"
5959
/>
6060
</v-col>
6161
</v-row>
@@ -204,7 +204,7 @@ export default {
204204
return this.school.schoolCategoryCode;
205205
},
206206
getButtonText() {
207-
if(this.getSchoolCategory() === 'INDP_FNS' || this.getSchoolCategory() === 'INDEPEND') {
207+
if(this.getSchoolCategory() === 'INDP_FNS' || this.getSchoolCategory() === 'INDEPEND' || this.getSchoolCategory() === 'FED_BAND') {
208208
return 'Submit 1701 Data to Ministry';
209209
} else {
210210
return 'Submit 1701 Data to District';

0 commit comments

Comments
 (0)