diff --git a/frontend/src/components/sdcCollection/sdcSchoolCollection/StepSevenSubmitData.vue b/frontend/src/components/sdcCollection/sdcSchoolCollection/StepSevenSubmitData.vue index 4254fbf9a..1a02e7c59 100644 --- a/frontend/src/components/sdcCollection/sdcSchoolCollection/StepSevenSubmitData.vue +++ b/frontend/src/components/sdcCollection/sdcSchoolCollection/StepSevenSubmitData.vue @@ -21,7 +21,7 @@ class="mb-4" >

@@ -55,7 +55,7 @@ density="compact" type="success" variant="tonal" - :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.'" + :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.'" /> @@ -204,7 +204,7 @@ export default { return this.school.schoolCategoryCode; }, getButtonText() { - if(this.getSchoolCategory() === 'INDP_FNS' || this.getSchoolCategory() === 'INDEPEND') { + if(this.getSchoolCategory() === 'INDP_FNS' || this.getSchoolCategory() === 'INDEPEND' || this.getSchoolCategory() === 'FED_BAND') { return 'Submit 1701 Data to Ministry'; } else { return 'Submit 1701 Data to District';