From 5f30aa9c2eb6c043be237c2d690f603877ba0ecc Mon Sep 17 00:00:00 2001 From: anhefti Date: Tue, 12 Jan 2021 09:55:49 +0100 Subject: [PATCH] fixed bug with ad hoc testing LMS Setup in edit view --- .../java/ch/ethz/seb/sebserver/gui/content/LmsSetupForm.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/ch/ethz/seb/sebserver/gui/content/LmsSetupForm.java b/src/main/java/ch/ethz/seb/sebserver/gui/content/LmsSetupForm.java index 1bd09030..573fd16a 100644 --- a/src/main/java/ch/ethz/seb/sebserver/gui/content/LmsSetupForm.java +++ b/src/main/java/ch/ethz/seb/sebserver/gui/content/LmsSetupForm.java @@ -330,6 +330,7 @@ public class LmsSetupForm implements TemplateComposer { .newAction(ActionDefinition.LMS_SETUP_TEST_EDIT) .withEntityKey(entityKey) .withExec(action -> this.testAdHoc(action, formHandle)) + .noEventPropagation() .ignoreMoveAwayFromEdit() .publishIf(() -> !readonly && !isNew.getAsBoolean())