* @param issue_id int The issue ID to display
*/
public static void showIssue(int issue_id) {
System.out.println("Clicked on a ticket! Trying to open issue " + issue_id);
contentPanel.removeAll();
contentPanel.add(new IssueController(issue_id));
controlPanelFrame.pack();
}