We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ceefb3b + fd3a519 commit f6e0841Copy full SHA for f6e0841
frontend/src/components/graduation/GradSchoolCodeNameFilter.vue
@@ -63,7 +63,6 @@ export default {
63
return {
64
schoolsCacheMap: [],
65
schoolSearchNames: [],
66
- allowedSchoolCategories: ['PUBLIC', 'YUKON']
67
};
68
},
69
computed: {
@@ -111,7 +110,6 @@ export default {
111
110
this.schoolsCacheMap.forEach(school => {
112
let gradSchool = this.gradSchoolMap.get(school.schoolID);
113
if (school.districtID !== this.districtID) return;
114
- if (!this.allowedSchoolCategories.includes(school.schoolCategoryCode)) return;
115
if (gradSchool?.canIssueTranscripts !== 'Y') return;
116
if (!school.effectiveDate) return;
117
0 commit comments