Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

Commit

Permalink
Bugfix: Changed date formats in CRUD admin tables. Previously hh:mm,
Browse files Browse the repository at this point in the history
now HH:mm

Change-Id: If2221c01b304372e6fe6ef963c540e1ad94f19d5
  • Loading branch information
henper committed Sep 13, 2012
1 parent 3635c26 commit abb1a42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/burrito/client/crud/CrudEntityIndex.java
Expand Up @@ -426,8 +426,8 @@ public void onClick(ClickEvent event) {

}

private static DateTimeFormat otherYearFormat = DateTimeFormat.getFormat("yyyy-MM-dd hh:mm");
private static DateTimeFormat sameYearFormat = DateTimeFormat.getFormat("d MMM hh:mm");
private static DateTimeFormat otherYearFormat = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm");
private static DateTimeFormat sameYearFormat = DateTimeFormat.getFormat("d MMM HH:mm");
private static CrudServiceAsync service = GWT.create(CrudService.class);
private static CrudMessages messages = GWT.create(CrudMessages.class);
private CrudEntityTable table;
Expand Down

0 comments on commit abb1a42

Please sign in to comment.