diff --git a/desktop/src/main/java/bisq/desktop/main/dao/governance/dashboard/GovernanceDashboardView.java b/desktop/src/main/java/bisq/desktop/main/dao/governance/dashboard/GovernanceDashboardView.java index b9c3f8a32a7..542df481ad9 100644 --- a/desktop/src/main/java/bisq/desktop/main/dao/governance/dashboard/GovernanceDashboardView.java +++ b/desktop/src/main/java/bisq/desktop/main/dao/governance/dashboard/GovernanceDashboardView.java @@ -139,7 +139,7 @@ private String getPhaseDuration(int height, DaoPhase.Phase phase) { long duration = daoFacade.getDurationForPhaseForDisplay(phase); long now = new Date().getTime(); SimpleDateFormat dateFormatter = new SimpleDateFormat("dd MMM", Locale.getDefault()); - SimpleDateFormat timeFormatter = new SimpleDateFormat("hh:mm", Locale.getDefault()); + SimpleDateFormat timeFormatter = new SimpleDateFormat("HH:mm", Locale.getDefault()); String startDateTime = formatter.formatDateTime(new Date(now + (start - height) * 10 * 60 * 1000L), dateFormatter, timeFormatter); String endDateTime = formatter.formatDateTime(new Date(now + (end - height) * 10 * 60 * 1000L), dateFormatter, timeFormatter); String durationTime = formatter.formatDurationAsWords(duration * 10 * 60 * 1000, false, false);