Skip to content

Commit

Permalink
Scheduling Assistant, Course Requests: Advisor Recommendations
Browse files Browse the repository at this point in the history
- fixed the display of the Notes column in the Advisor Course Recommendations dialog
- it looks like this got accidentally broken in commit c865c22
  • Loading branch information
tomas-muller committed Oct 9, 2023
1 parent 5841952 commit 43fe7e9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public void setValue(CourseRequestInterface requests) {
new WebTable.Cell(ToolBox.toString(prefs), true),
request.isCritical() ? new WebTable.IconCell(RESOURCES.requestsCritical(), MESSAGES.descriptionRequestCritical(), "") :
request.isImportant() ? new WebTable.IconCell(RESOURCES.requestsImportant(), MESSAGES.descriptionRequestImportant(), "") :
request.isVital() ? new WebTable.IconCell(RESOURCES.requestsVital(), MESSAGES.descriptionRequestVital(), "") : new WebTable.Cell(""),
(iMode == WaitListMode.WaitList
? (request.isWaitList() ? new WebTable.IconCell(RESOURCES.requestsWaitList(), MESSAGES.descriptionRequestWaitListed(), "") : new WebTable.Cell(""))
: (request.isNoSub() ? new WebTable.IconCell(RESOURCES.requestsWaitList(), MESSAGES.descriptionRequestNoSubs(), "") : new WebTable.Cell(""))),
Expand Down Expand Up @@ -233,10 +234,10 @@ public void setValue(CourseRequestInterface requests) {
new WebTable.Cell(rc.hasCourseTitle() ? rc.getCourseTitle() : ""),
credit,
new WebTable.Cell(ToolBox.toString(prefs), true),
new WebTable.Cell(""),
request.isCritical() ? new WebTable.IconCell(RESOURCES.requestsCritical(), MESSAGES.descriptionRequestCritical(), "") :
request.isImportant() ? new WebTable.IconCell(RESOURCES.requestsImportant(), MESSAGES.descriptionRequestImportant(), "") :
request.isVital() ? new WebTable.IconCell(RESOURCES.requestsVital(), MESSAGES.descriptionRequestVital(), "") : new WebTable.Cell(""),
new WebTable.Cell(""),
note
);
} else {
Expand Down

0 comments on commit 43fe7e9

Please sign in to comment.