Skip to content

Commit

Permalink
Bug fixes: EDX-2977, 2982
Browse files Browse the repository at this point in the history
  • Loading branch information
SodhiA1 committed Oct 7, 2024
1 parent 57e92ef commit ddbd88a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions backend/src/components/sdc/sdc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/common/CustomTableSlice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -427,5 +427,6 @@ tr:hover td {
justify-content: center;
gap: .5rem;
padding-bottom: .2rem;
padding-top: 1rem;
}
</style>
8 changes: 5 additions & 3 deletions frontend/src/components/common/Filters.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
id="searchFiltering"
class="filter-heading pb-0"
>
Name and ID Filtering
</v-col>
<v-tooltip content-class="customTooltip">
<span>Name and ID Filtering</span>

<v-tooltip content-class="customTooltip">
<template #activator="{ props: tooltipProps }">
<v-icon
v-bind="tooltipProps"
Expand All @@ -67,6 +67,8 @@
The search button must be used to apply changes to PEN or Local ID or Name searches. All other filters will apply on change without use of the search button.
</span>
</v-tooltip>
</v-col>

</v-row>
<v-row>
<v-col
Expand Down

0 comments on commit ddbd88a

Please sign in to comment.