Skip to content

Commit

Permalink
Expose the author URL in "commits" example (#2751)
Browse files Browse the repository at this point in the history
  • Loading branch information
phanan authored and yyx990803 committed Apr 29, 2016
1 parent da7f273 commit 6f06f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/commits/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>Latest Vue.js Commits</h1>
<li v-for="record in commits">
<a :href="record.html_url" target="_blank" class="commit">{{record.sha.slice(0, 7)}}</a>
- <span class="message">{{truncate(record.commit.message)}}</span><br>
by <span class="author">{{record.commit.author.name}}</span>
by <span class="author"><a :href="record.author.html_url" target="_blank">{{record.commit.author.name}}</a></span>
at <span class="date">{{formatDate(record.commit.author.date)}}</span>
</li>
</ul>
Expand Down

0 comments on commit 6f06f1b

Please sign in to comment.