Skip to content

Commit

Permalink
Merge pull request #22 from indiana-university/LMSA-9028
Browse files Browse the repository at this point in the history
LMSA-9028 fix blank checkbox when editing
  • Loading branch information
mrw-iu authored Nov 2, 2023
2 parents 87be3b9 + f679182 commit 3e9a75a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,10 @@ public String doContinue(@PathVariable("courseId") String courseId, @RequestPara
newEntry = false;
}

uiSection.add(sectionUI);
if (sectionUI.getSectionId() != null) {
uiSection.add(sectionUI);
}

if (newEntry) {
rebuiltTermMap.put(termMap.get(sectionUI.getTermId()), uiSection);
}
Expand Down

0 comments on commit 3e9a75a

Please sign in to comment.