IDEMPIERE-5636 - Add Mattermost to the About Tab (#1743)

* IDEMPIERE-5636 - Add Mattermost to the About Tab

* Update AboutWindow.java
This commit is contained in:
Diego Ruiz 2023-03-21 13:57:39 +01:00 committed by GitHub
parent 85af1ed2a1
commit c2d88f17d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -444,6 +444,14 @@ public class AboutWindow extends Window implements EventListener<Event> {
link.setHref("http://groups.google.com/group/idempiere");
link.setTarget("_blank");
link.setParent(vbox);
separator = new Separator();
separator.setParent(vbox);
link = new ToolBarButton();
link.setLabel("Online Support");
link.setHref("https://mattermost.idempiere.org");
link.setTarget("_blank");
link.setParent(vbox);
return tabPanel;
}