From 43fe7e97b8461ac5f448b4650830f7373576c28d Mon Sep 17 00:00:00 2001 From: tomas-muller Date: Thu, 21 Sep 2023 18:58:44 +0200 Subject: [PATCH] Scheduling Assistant, Course Requests: Advisor Recommendations - fixed the display of the Notes column in the Advisor Course Recommendations dialog - it looks like this got accidentally broken in commit c865c22 --- .../gwt/client/sectioning/AdvisorCourseRequestsTable.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/JavaSource/org/unitime/timetable/gwt/client/sectioning/AdvisorCourseRequestsTable.java b/JavaSource/org/unitime/timetable/gwt/client/sectioning/AdvisorCourseRequestsTable.java index c5a009b5cd..3bc25204c3 100644 --- a/JavaSource/org/unitime/timetable/gwt/client/sectioning/AdvisorCourseRequestsTable.java +++ b/JavaSource/org/unitime/timetable/gwt/client/sectioning/AdvisorCourseRequestsTable.java @@ -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(""))), @@ -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 {