Skip to content

Commit

Permalink
change name of new graph in patient view
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-mohr committed Feb 12, 2018
1 parent 9c2da05 commit da6891a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ Component initGraphs() {
graphSection.setCaption("Project Graph");

graphSectionContent.setMargin(new MarginInfo(true, false, true, true));
// graphSection.setMargin(new MarginInfo(true, false, true, true));
// graphSection.setMargin(new MarginInfo(true, false, true, true));
graphSection.setMargin(true);
graphSection.setSpacing(true);
graphSection.setWidth("100%");
Expand All @@ -1060,7 +1060,7 @@ Component initGraphs() {

graphSection.addComponent(graphSectionContent);
graphTab.addTab(graphSection, "Sample Graph");
graphTab.addTab(newGraphContent, "New Graph");
graphTab.addTab(newGraphContent, "Sample Graph v2 (beta)");
return graphTab;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ public static class Servlet extends VaadinServlet {
private ConfigurationManager manager;

private logging.Logger LOGGER = new Log4j2Logger(QbicmainportletUI.class);
private String version = "1.6.1";
private String revision = "a33e5fb";
private String version = "1.6.2";
private String revision = "9c2da05";
private String resUrl;
protected View currentView;

Expand Down

0 comments on commit da6891a

Please sign in to comment.