improvement(gitlab): use updated time

This commit is contained in:
Rongjian Zhang 2020-02-01 10:35:55 +08:00
parent 1c35b0b4cd
commit cfd2d03fe9
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class GitlabGroupScreen extends StatelessWidget {
for (var v in p.projects)
RepositoryItem.gl(
payload: v,
note: 'Created ${timeago.format(v.createdAt)}',
note: 'Updated ${timeago.format(v.lastActivityAt)}',
)
],
)

View File

@ -62,7 +62,7 @@ class GitlabUserScreen extends StatelessWidget {
for (var v in projects)
RepositoryItem.gl(
payload: v,
note: 'Created ${timeago.format(v.createdAt)}',
note: 'Updated ${timeago.format(v.lastActivityAt)}',
)
],
)