Skip to content

Commit 648fcd0

Browse files
authored
Merge pull request #2315 from bcgov/feature/EGC-376
DIS | MIN - Remove date logic filtering schools list
2 parents f1193d9 + 3c6cc83 commit 648fcd0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

frontend/src/components/graduation/GradSchoolCodeNameFilter.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,7 @@ export default {
116116
if (!school.effectiveDate) return;
117117
118118
const openDate = LocalDateTime.parse(school.effectiveDate);
119-
const endOfCloseDateGraceWindow = school.expiryDate ? LocalDateTime.parse(school.expiryDate).plusMonths(3) : null;
120-
121119
if (cutoff.isBefore(openDate)) return;
122-
if (endOfCloseDateGraceWindow && cutoff.isAfter(endOfCloseDateGraceWindow)) return;
123120
124121
this.schoolSearchNames.push({
125122
schoolCodeName: `${school.mincode} - ${school.schoolName}`,

0 commit comments

Comments
 (0)