diff --git a/backend/src/components/studentFilters.js b/backend/src/components/studentFilters.js index 6a992bad..4ba59051 100644 --- a/backend/src/components/studentFilters.js +++ b/backend/src/components/studentFilters.js @@ -340,7 +340,8 @@ function validateFteZeroFilter(filters) { 'INDYADULT', 'INACTIVE', 'DISTDUP', - 'AUTHDUP' + 'AUTHDUP', + 'ZEROCRS' ]; if (filters.length > 0) { if (!filters.every(value => fteZeroCategories.includes(value))) { diff --git a/frontend/src/utils/sdc/collectionTableConfiguration.js b/frontend/src/utils/sdc/collectionTableConfiguration.js index b3701c9d..d285c937 100644 --- a/frontend/src/utils/sdc/collectionTableConfiguration.js +++ b/frontend/src/utils/sdc/collectionTableConfiguration.js @@ -305,6 +305,11 @@ export const FTE_ZERO_FILTER = Object.freeze( title: 'Authority already received funding', id: 'authdup', value: 'AUTHDUP' + }, + { + title: 'Student Reported Without Courses', + id: 'zerocrs', + value: 'ZEROCRS' } ] } @@ -1191,4 +1196,4 @@ export const MIN_REPORTS = Object.freeze( { title: 'Legal Last Name', key: 'legalLastName' } ] } -); \ No newline at end of file +);