Skip to content

Commit

Permalink
Update issue.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhpant authored and gitmate-bot committed Nov 7, 2018
1 parent dc812d5 commit b872c70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/issue.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function IssueSimple(props) {
<a
className='issue-title'
target='_blank'
href={issue.htmlUrl}>
href={card.isPullRequest() ? issue.htmlUrl+'/files' : issue.htmlUrl}>
<GithubFlavoredMarkdown
className='-issue-title-text'
inline
Expand All @@ -144,7 +144,7 @@ function IssueSimple(props) {
<a
className='issue-number'
target='_blank'
href={issue.htmlUrl}>
href={card.isPullRequest() ? issue.htmlUrl+'/files' : issue.htmlUrl}>
#{issue.number}
</a>
</BS.ListGroupItem>
Expand Down Expand Up @@ -450,7 +450,7 @@ function IssueCard(props) {
key='link'
className='issue-title'
target='_blank'
href={issue.htmlUrl}>
href={card.isPullRequest() ? issue.htmlUrl+'/files' : issue.htmlUrl}>
<GithubFlavoredMarkdown
inline
repoOwner={repoOwner}
Expand Down

0 comments on commit b872c70

Please sign in to comment.