diff --git a/src/static/js/hub.js b/src/static/js/hub.js index ab80e51..cab65e2 100644 --- a/src/static/js/hub.js +++ b/src/static/js/hub.js @@ -22,7 +22,7 @@ function repositories(source) { function flists_file(file, username, tagname) { var output = { 'size': file['size'], - 'updated': file['updated'], + 'updated': (file['type'] == 'symlink' || file['type'] == 'taglink') && file['linktime'] ? file['linktime'] : file['updated'], }; var fileicon = $('', {'class': 'glyphicon glyphicon-file'});