Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
Merge branch 'fix/message-pullrequest-reviewed' of dlab/hive
Browse files Browse the repository at this point in the history
from pull-request 1468

* refs/heads/fix/message-pullrequest-reviewed:
  PullRequest: Fix review message

Reviewed-by: 백기선 <keesun.baik@navercorp.com>
  • Loading branch information
백기선 committed Feb 6, 2015
2 parents 246b3b8 + 58fe2b4 commit 51207fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/git/partial_pull_request_event.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@
@if(event.newValue == PullRequestReviewAction.DONE.name) {
<li class="event" id="comment-@event.id">
<span class="state changed">@Messages("pullRequest.review")</span>
@Html(Messages("notification.pullrequestHeader.reviewed",linkToUser(user.loginId, user.name)))
@Html(Messages("notification.pullrequest.reviewed",linkToUser(user.loginId, user.name)))
<span class="date">
<a href="#event-@event.id" title="@getDateString(event.getDate())">@agoOrDateString(event.getDate())</a>
</span>
</li>
} else {
<li class="event" id="comment-@event.id">
<span class="state changed">@Messages("pullRequest.unreview")</span>
@Html(Messages("notification.pullrequestHeader.unreviewed", linkToUser(user.loginId, user.name)))
@Html(Messages("notification.pullrequest.unreviewed", linkToUser(user.loginId, user.name)))
<span class="date">
<a href="#event-@event.id" title="@getDateString(event.getDate())">@agoOrDateString(event.getDate())</a>
</span>
Expand Down

0 comments on commit 51207fe

Please sign in to comment.