Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/RepoBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ export default {
getIssueCommentsCounterTooltip: function (issue) {
const numComments = issue.comments_count
if (numComments === 0) {
return `There are no comments on this issue`
return 'There are no comments on this issue'
}
if (numComments > 1) {
return `There are ${numComments} comments on this issue`
}
return `There is one comment on this issue`
return 'There is one comment on this issue'
}
}
}
Expand Down