Browse Source

add missing registration in labeltype action

Keiichi Watanabe 9 years ago
parent
commit
615b2c48b4

+ 3 - 1
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

@@ -362,7 +362,9 @@ public class AdminLabeltypeAction extends FessAdminAction {
 
     protected VaErrorHook toEditHtml() {
         return () -> {
-            return asHtml(path_AdminLabeltype_EditJsp);
+            return asHtml(path_AdminLabeltype_EditJsp).renderWith(data -> {
+                registerItems(data);
+            });
         };
     }
 }