Skip to content

Commit 929d3da

Browse files
authored
Merge pull request #2330 from bcgov/fix/gradSchoolCodeNameFilter
dont show INDEPEND schools in district dropdown
2 parents 13a3fb7 + 44cbac1 commit 929d3da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

frontend/src/components/graduation/GradSchoolCodeNameFilter.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export default {
110110
this.schoolsCacheMap.forEach(school => {
111111
let gradSchool = this.gradSchoolMap.get(school.schoolID);
112112
if (school.districtID !== this.districtID) return;
113+
if (['OFFSHORE', 'INDEPEND', 'INDP_FNS'].includes(school.schoolCategoryCode)) return;
113114
if (gradSchool?.canIssueTranscripts !== 'Y') return;
114115
if (!school.effectiveDate) return;
115116

0 commit comments

Comments
 (0)