changed updated_at to pushed_at

This seems to be much more useful. Updated_at doesn't mean any meaningful activity.  
I found that looking at  `elastic/sense` forks, where bleskes/sense is the first one. Updated at is 19 days ago, however last commit or any activity was 2 years ago.
This commit is contained in:
michalsvec 2017-11-28 12:13:07 +01:00 committed by GitHub
parent 4c080d63a6
commit e99745938a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);