mirror of
https://github.com/techgaun/active-forks.git
synced 2024-12-22 05:22:14 +01:00
Merge pull request #3 from michalsvec/patch-1
changed updated_at to pushed_at
This commit is contained in:
commit
39d4603f56
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ function showData(data) {
|
|||
<th><i class="fa fa-github" aria-hidden="true"></i> Repository</th>
|
||||
<th><i class="fa fa-star" aria-hidden="true"></i> Stargazers</th>
|
||||
<th><i class="fa fa-code-fork" aria-hidden="true"></i> Forks</th>
|
||||
<th><i class="fa fa-clock-o" aria-hidden="true"></i> Last Update</th>
|
||||
<th><i class="fa fa-clock-o" aria-hidden="true"></i> Last Push</th>
|
||||
</tr>
|
||||
</thead>
|
||||
`;
|
||||
|
@ -86,7 +86,7 @@ function showData(data) {
|
|||
<td><a href="${fork.html_url}">${fork.full_name}</a></td>
|
||||
<td>${fork.stargazers_count}</td>
|
||||
<td>${fork.forks_count}</td>
|
||||
<td>${timeSince(fork.updated_at)} ago</td>
|
||||
<td>${timeSince(fork.pushed_at)} ago</td>
|
||||
</tr>
|
||||
`;
|
||||
html.push(item);
|
||||
|
|
Loading…
Reference in a new issue