diff --git a/backend/src/components/sdc/sdc.js b/backend/src/components/sdc/sdc.js index 43c5a0b7..7fcb95bc 100644 --- a/backend/src/components/sdc/sdc.js +++ b/backend/src/components/sdc/sdc.js @@ -496,6 +496,9 @@ async function getSDCSchoolCollectionStudentDetail(req, res) { if (sdcSchoolCollectionStudentData?.enrolledProgramCodes) { sdcSchoolCollectionStudentData.enrolledProgramCodes = sdcSchoolCollectionStudentData?.enrolledProgramCodes.match(/.{1,2}/g); } + if (sdcSchoolCollectionStudentData?.numberOfCourses) { + sdcSchoolCollectionStudentData.numberOfCourses = formatNumberOfCourses(sdcSchoolCollectionStudentData?.numberOfCourses); + } let school = cacheService.getSchoolBySchoolID(sdcSchoolCollectionStudentData.schoolID); sdcSchoolCollectionStudentData.schoolName = getSchoolName(school); diff --git a/frontend/src/components/common/CustomTableSlice.vue b/frontend/src/components/common/CustomTableSlice.vue index fc605e9a..13b32d20 100644 --- a/frontend/src/components/common/CustomTableSlice.vue +++ b/frontend/src/components/common/CustomTableSlice.vue @@ -427,5 +427,6 @@ tr:hover td { justify-content: center; gap: .5rem; padding-bottom: .2rem; + padding-top: 1rem; } diff --git a/frontend/src/components/common/Filters.vue b/frontend/src/components/common/Filters.vue index f2d9ea01..480e0b50 100644 --- a/frontend/src/components/common/Filters.vue +++ b/frontend/src/components/common/Filters.vue @@ -50,9 +50,9 @@ id="searchFiltering" class="filter-heading pb-0" > - Name and ID Filtering - - + Name and ID Filtering + +