Skip to content

Commit

Permalink
little fix for date formats on workflow detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jun 17, 2016
1 parent c5cc87f commit d7c30e3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -130,7 +130,7 @@ public String getCreatedFormatted() {
}

public String getCreatedFormattedFull() {
return WebComponentUtil.getLocalizedDate(workItem.getWorkItemCreatedTimestamp(), DateLabelComponent.FULL_FULL_STYLE);
return WebComponentUtil.getLocalizedDate(workItem.getWorkItemCreatedTimestamp(), DateLabelComponent.FULL_MEDIUM_STYLE);
}

public Date getCreatedDate() {
Expand All @@ -142,7 +142,7 @@ public Date getStartedDate() {
}

public String getStartedFormattedFull() {
return WebComponentUtil.getLocalizedDate(workItem.getProcessStartedTimestamp(), DateLabelComponent.FULL_FULL_STYLE);
return WebComponentUtil.getLocalizedDate(workItem.getProcessStartedTimestamp(), DateLabelComponent.FULL_MEDIUM_STYLE);
}

public String getAssigneeOrCandidates() {
Expand Down

0 comments on commit d7c30e3

Please sign in to comment.