add missing registration in labeltype action

This commit is contained in:
Keiichi Watanabe 2015-10-19 16:03:28 +09:00
parent 005999c56f
commit 615b2c48b4

View file

@ -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);
});
};
}
}