Skip to content

Commit

Permalink
Multiple Class Setup: External Id
Browse files Browse the repository at this point in the history
- fixed the ability to clear External Id (when modification of external ids is allowed)
  • Loading branch information
tomas-muller committed Jun 12, 2024
1 parent bcca6a6 commit fb7f639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -674,8 +674,7 @@ private void addOrUpdateClasses(ClassSetupInterface form, InstrOfferingConfig io
changed = true;
modifiedClass.setEnabledForStudentScheduling(enabledForStudentScheduling);
}
if (suffix != null) {
if (suffix.isEmpty()) suffix = null;
if (form.isEditExternalId()) {
if (suffix == null ? modifiedClass.getClassSuffix() != null : !suffix.equals(modifiedClass.getClassSuffix())) {
modifiedClass.setClassSuffix(suffix);
changed = true;
Expand Down
1 change: 1 addition & 0 deletions WebContent/help/Release-Notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<description>
<line>Added column with the capacity of the assigned room (Cap).</line>
<line>Added mouse-over for assigned rooms.</line>
<line>Fixed the ability to clear External Id (when modification of external ids is allowed).</line>
</description>
</item>
</category>
Expand Down

0 comments on commit fb7f639

Please sign in to comment.