@Override
public void createPartControl(Composite parent) {
contentPanel = new Composite(parent, SWT.NONE);
contentPanel.setLayout(stackLayout);
dashboard = new DashboardPane(contentPanel);
browser = new Browser(contentPanel, SWT.NONE);
// Some day I will regret this, but it's currently the only way to have clickable links in the alert viewer
browser.setJavascriptEnabled(true);
linkClick = new LinkHandler(browser, getSite());