You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2020/05/12 08:07:05 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2351] checkbox should work

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e2643b  [OPENMEETINGS-2351] checkbox should work
5e2643b is described below

commit 5e2643bedbb4a23ce26c9a66bc39dd27021edad0
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Tue May 12 15:06:45 2020 +0700

    [OPENMEETINGS-2351] checkbox should work
---
 .../main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
index 4dc1b3b..7885201 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
@@ -130,7 +130,7 @@ public class BackupPanel extends AdminBasePanel {
 			DecimalFormat formatter = new DecimalFormat("#,###.00");
 			add(new Label("MaxUploadSize", formatter.format(megaBytes)));
 
-			add(new CheckBox("includeFilesInBackup", includeFilesInBackup));
+			add(new CheckBox("includeFilesInBackup", includeFilesInBackup).setOutputMarkupId(true));
 
 			// Set maximum size controlled by configuration
 			setMaxSize(Bytes.bytes(maxBytes));