Merge remote-tracking branch 'origin/patch-1.0.2' into development

This commit is contained in:
anhefti 2020-11-17 12:36:59 +01:00
commit 61cd109ff2
2 changed files with 5 additions and 4 deletions

View file

@ -22,6 +22,7 @@ import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gbl.util.Utils;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.service.page.ComposerService;
@ -146,7 +147,7 @@ public class ComposerServiceImpl implements ComposerService {
final MessageBox logoutSuccess = new Message(
pageContext.getShell(),
this.i18nSupport.getText("sebserver.logout"),
this.i18nSupport.getText("sebserver.logout.invalid-session.message"),
Utils.formatLineBreaks(this.i18nSupport.getText("sebserver.logout.invalid-session.message")),
SWT.ICON_INFORMATION,
this.i18nSupport);
logoutSuccess.open(null);

View file

@ -296,12 +296,12 @@ public final class ClientConnectionTable {
}
public void updateValues() {
if (this.statusFilterChanged) {
if (this.statusFilterChanged || this.forceUpdateAll) {
this.toDelete.clear();
this.toDelete.addAll(this.tableMapping.keySet());
}
this.restCallBuilder
.withHeader(API.EXAM_MONITORING_STATE_FILTER, (this.forceUpdateAll) ? "" : this.statusFilterParam)
.withHeader(API.EXAM_MONITORING_STATE_FILTER, this.statusFilterParam)
.call()
.get(error -> {
log.error("Error poll connection data: ", error);
@ -312,7 +312,7 @@ public final class ClientConnectionTable {
data.getConnectionId(),
UpdatableTableItem::new);
tableItem.push(data);
if (this.statusFilterChanged) {
if (this.statusFilterChanged || this.forceUpdateAll) {
this.toDelete.remove(data.getConnectionId());
}
});