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 f1193d9 + 3c6cc83 commit 648fcd0Copy full SHA for 648fcd0
frontend/src/components/graduation/GradSchoolCodeNameFilter.vue
@@ -116,10 +116,7 @@ export default {
116
if (!school.effectiveDate) return;
117
118
const openDate = LocalDateTime.parse(school.effectiveDate);
119
- const endOfCloseDateGraceWindow = school.expiryDate ? LocalDateTime.parse(school.expiryDate).plusMonths(3) : null;
120
-
121
if (cutoff.isBefore(openDate)) return;
122
- if (endOfCloseDateGraceWindow && cutoff.isAfter(endOfCloseDateGraceWindow)) return;
123
124
this.schoolSearchNames.push({
125
schoolCodeName: `${school.mincode} - ${school.schoolName}`,
0 commit comments