Skip to content

Commit

Permalink
issue: Change author name of view page into recent one
Browse files Browse the repository at this point in the history
  • Loading branch information
doortts committed Aug 10, 2017
1 parent e7017fa commit 447cf4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/board/view.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<img src="@User.findByLoginId(post.authorLoginId).avatarUrl(32)" width="20" height="20">
</span>
@if(post.authorLoginId != null){
<strong class="name">@post.authorName</strong>
<strong class="name">@post.getAuthor.name</strong>
<span class="loginid"> <strong>@{"@"}</strong>@post.authorLoginId</span>
} else {
<strong class="name">@Messages("common.noAuthor")</strong>
Expand Down
2 changes: 1 addition & 1 deletion app/views/issue/view.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<img src="@User.findByLoginId(issue.authorLoginId).avatarUrl(32)" width="20" height="20">
</span>
@if(issue.authorLoginId != null){
<strong class="name">@issue.authorName</strong>
<strong class="name">@issue.getAuthor.name</strong>
<span class="loginid"> <strong>@{"@"}</strong>@issue.authorLoginId</span>
} else {
<strong class="name">@Messages("issue.noAuthor")</strong>
Expand Down

0 comments on commit 447cf4d

Please sign in to comment.