Skip to content

Commit e7360d7

Browse files
authored
Merge pull request #17 from cloudhx/iss16
Added repository and created date to the issue list [Issue 16]
2 parents f53a430 + 84c9afe commit e7360d7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/issues/IssueList.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const IssueList = ({ issues, onCloseClick, onRefreshClick }) => (
1111
<tr>
1212
<th>Title</th>
1313
<th>Labels</th>
14+
<th>Repository</th>
15+
<th>Created</th>
1416
<th>Assignee</th>
1517
<th>State</th>
1618
<th />
@@ -37,6 +39,8 @@ const IssueList = ({ issues, onCloseClick, onRefreshClick }) => (
3739
</React.Fragment>
3840
))}
3941
</td>
42+
<td>{issue.repository.full_name}</td>
43+
<td>{new Date(issue.created_at).toLocaleString()}</td>
4044
<td>{issue.assignee.login}</td>
4145
<td>{issue.state}</td>
4246
<td>

0 commit comments

Comments
 (0)