Skip to content

Commit f6e0841

Browse files
authored
Merge pull request #2320 from bcgov/fix/EGC-403
Search functionality is not working for all the categories other than public
2 parents ceefb3b + fd3a519 commit f6e0841

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

frontend/src/components/graduation/GradSchoolCodeNameFilter.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ export default {
6363
return {
6464
schoolsCacheMap: [],
6565
schoolSearchNames: [],
66-
allowedSchoolCategories: ['PUBLIC', 'YUKON']
6766
};
6867
},
6968
computed: {
@@ -111,7 +110,6 @@ export default {
111110
this.schoolsCacheMap.forEach(school => {
112111
let gradSchool = this.gradSchoolMap.get(school.schoolID);
113112
if (school.districtID !== this.districtID) return;
114-
if (!this.allowedSchoolCategories.includes(school.schoolCategoryCode)) return;
115113
if (gradSchool?.canIssueTranscripts !== 'Y') return;
116114
if (!school.effectiveDate) return;
117115

0 commit comments

Comments
 (0)