Skip to content

Commit

Permalink
Profile description bellow the dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioG70 committed Jan 24, 2024
1 parent 4dc2f50 commit 97d795b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ private FlowPanel createConversionProfileLayout(String repOrDip, String pluginId

FlowPanel result = new FlowPanel();
FlowPanel panel = new FlowPanel();
FlowPanel descriptionPanel = new FlowPanel();

BrowserService.Util.getInstance().retrieveUserProfilePluginItems(pluginId, repOrDip,
LocaleInfo.getCurrentLocale().getLocaleName(), new AsyncCallback<Set<UserProfile>>() {
Expand Down Expand Up @@ -534,13 +535,13 @@ public void onSuccess(Set<UserProfile> result) {
});

panel.add(dropdown);
panel.add(description);
descriptionPanel.add(description);
panel.addStyleName("conversion-profile");

dropdown.setTitle(OBJECT_BOX);
result.add(parameterName);
addHelp(result, "User profile options");
result.add(panel);
result.add(descriptionPanel);
return result;
}

Expand Down

0 comments on commit 97d795b

Please sign in to comment.