Skip to content

Commit 30ea528

Browse files
author
ruiichen
committed
bugfix
1 parent b4f17ba commit 30ea528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/typescript/services/implementations/reviewDashboardService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function buildWhereStatement(filter?: ReviewDashboardFilter) {
162162
year.push({ "$applicant.academicYear$": { [Op.regexp]: "5(A|B)" } });
163163
}
164164
if (filter.additionalFilters.includes(AdditionalFilters.SIXTH_YEAR)) {
165-
year.push({ "$applicant.academicYear$": { [Op.regexp]: "6(A|B)" } });
165+
year.push({ "$applicant.academicYear$": { [Op.regexp]: "(G|g)raduate" } });
166166
}
167167
if (filter.additionalFilters.includes(AdditionalFilters.IN_REVIEW)) {
168168
status.push({ status: { [Op.eq]: "In Review" } });

0 commit comments

Comments
 (0)