From 270e9e762820833d6815e362034dc3f4809b6470 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 04 Sep 2014 14:59:05 -0400 Subject: [PATCH] Fix NPEs when handling referenced milestones that do not exist --- src/main/java/com/gitblit/wicket/pages/MyDashboardPage.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/gitblit/wicket/pages/MyDashboardPage.html b/src/main/java/com/gitblit/wicket/pages/MyDashboardPage.html index b55688c..ed3754e 100644 --- a/src/main/java/com/gitblit/wicket/pages/MyDashboardPage.html +++ b/src/main/java/com/gitblit/wicket/pages/MyDashboardPage.html @@ -68,8 +68,8 @@ <wicket:fragment wicket:id="chartsFragment"> <table> <tr> - <td><div id="chartRepositories" style="display:inline-block;width: 175px; height:175px"></div></td> - <td><div id="chartAuthors" style="display:inline-block;width: 175px; height: 175px;"></div></td> + <td><div id="chartRepositories" style="display:inline-block;width: 250px; height:175px"></div></td> + <td><div id="chartAuthors" style="display:inline-block;width: 250px; height: 175px;"></div></td> </tr> </table> </wicket:fragment> -- Gitblit v1.9.1