From bbf5f1389f3b8e621161b2e5848130a210f72cbe Mon Sep 17 00:00:00 2001 From: Peter Hormanns Date: Thu, 20 Jul 2017 17:31:11 +0200 Subject: [PATCH] fix typo --- web/src/main/java/de/hsadmin/web/GenericEditorFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/main/java/de/hsadmin/web/GenericEditorFactory.java b/web/src/main/java/de/hsadmin/web/GenericEditorFactory.java index 0f12b17..3ad2026 100644 --- a/web/src/main/java/de/hsadmin/web/GenericEditorFactory.java +++ b/web/src/main/java/de/hsadmin/web/GenericEditorFactory.java @@ -86,7 +86,7 @@ public class GenericEditorFactory implements IEditorFactory, Serializable { } private IHSEditor getMemberAssetActionEditor(String action, PropertyInfo propertyInfo, HSAdminSession session, Map whereContext) { - final String[] items = new String[] { " PAYMENT", "PAYBACK", "ADOPTION", "HANDOVER", "LOSS", "CLEARING", "PRESCRIPTION" }; + final String[] items = new String[] { "PAYMENT", "PAYBACK", "ADOPTION", "HANDOVER", "LOSS", "CLEARING", "PRESCRIPTION" }; final HSSelect field = new HSSelect(propertyInfo, 0, Arrays.asList(items)); field.setWidth("100%"); field.setEnabled(isWriteAble(propertyInfo, action));