Skip to content

Commit

Permalink
Merge pull request #305 from dacruz21/truncate-commit-message
Browse files Browse the repository at this point in the history
Truncate commit message to first line in RepoItem
  • Loading branch information
bradrydzewski committed Aug 13, 2019
2 parents 92ba3df + 5a67e96 commit 424868c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RepoItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="header" :title="title">
<span class="title">
<span class="number" v-if="number">#{{ number }}. </span>
<span>{{ title }}</span>
<span>{{ title.split('\n')[0] }}</span>
</span>

<Button outline borderless
Expand Down

0 comments on commit 424868c

Please sign in to comment.