Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class="mb-4"
>
<v-col
v-if="getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND'"
v-if="getSchoolCategory() === 'INDP_FNS' || getSchoolCategory() === 'INDEPEND' || getSchoolCategory() === 'FED_BAND'"
cols="12"
>
<p>
Expand Down Expand Up @@ -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.'"
/>
</v-col>
</v-row>
Expand Down Expand Up @@ -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';
Expand Down
Loading