Skip to content

Commit

Permalink
Merge pull request #40 from indiana-university/decrossTweaks
Browse files Browse the repository at this point in the history
Decross tweaks
  • Loading branch information
gjthomas authored Dec 3, 2024
2 parents d3e1bc0 + ea10662 commit 81580f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ public FindParentResult processSisLookup(String sisSectionId) {
return findParentResult;
}

Section section = sectionService.getSection(String.format("sis_section_id:%s", sisSectionId));
// this style of Canvas search is case-sensitive, so let's force the upper case that will be accurate for SIS
Section section = sectionService.getSection(String.format("sis_section_id:%s", sisSectionId.toUpperCase()));

if (section == null) {
findParentResult.setShowCourseInfo(false);
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/templates/findParentCourse.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ <h2 id="results-message" tabindex="-1" th:text="|Parent course found: ${findPare
</div>
<div class="rvt-m-top-sm">
<span>
Select sections to remove, then activate De-cross-list selected sections to de-cross-list
them from the course. Unavailable sections are due to either not having a SIS ID or it is
the course's original section.
Select sections to remove, then activate the 'De-cross-list selected sections' button to
remove those sections from the course. Unavailable sections are those that do not have an
SIS ID, or it is the course's original section.
</span>
</div>
</div>
Expand Down

0 comments on commit 81580f0

Please sign in to comment.