Skip to content

Commit

Permalink
fix for MID-4909 (localization support formDefinition)
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Sep 21, 2018
1 parent 3e9d35e commit a41af05
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -76,7 +76,7 @@ private String getGroupName(@NotNull FormDefinitionType formDefinition) {

private void initLayout(String groupName, List<AbstractFormItemType> formItems, Form<?> mainForm) {

Label header = new Label(ID_HEADER, groupName);
Label header = new Label(ID_HEADER, getPageBase().getString(groupName, (Object []) null));
add(header);

RepeatingView itemView = new RepeatingView(ID_PROPERTY);
Expand Down

0 comments on commit a41af05

Please sign in to comment.