[rhq] Branch 'release/jon3.1.x' - modules/enterprise

mike thompson mithomps at fedoraproject.org
Wed Aug 22 17:18:44 UTC 2012


 modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/groups/wizard/GroupCreateStep.java |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 9fe84f4850487eed9d23b847f41f9cdc5e848c03
Author: Jirka Kremser <jkremser at redhat.com>
Date:   Thu May 24 12:57:50 2012 +0200

    [BZ 788997] Setting the maximum length of the description to 100 characters
    (cherry picked from commit ead694e1a3b5ebdf540e21f9f4fe8a50703760fc)

diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/groups/wizard/GroupCreateStep.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/groups/wizard/GroupCreateStep.java
index 0fb1785..143c159 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/groups/wizard/GroupCreateStep.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/groups/wizard/GroupCreateStep.java
@@ -122,6 +122,7 @@ public class GroupCreateStep extends AbstractWizardStep {
 
             TextAreaItem description = new AutoFitTextAreaItem("description", MSG.common_title_description());
             description.setWidth(300);
+            description.setLength(100);
 
             CheckboxItem recursive = new CheckboxItem("recursive", MSG.view_groupCreateWizard_createStep_recursive());
 




More information about the rhq-commits mailing list