Small UI fixes to tag history timeline
This commit is contained in:
parent
0dbe267212
commit
35752176b5
3 changed files with 7 additions and 2 deletions
|
@ -135,6 +135,10 @@ angular.module('quay').directive('repoTagHistory', function () {
|
|||
$scope.historyEntryMap = tagEntries;
|
||||
};
|
||||
|
||||
$scope.isCurrent = function(entry) {
|
||||
return $scope.historyEntryMap[entry.tag_name][0] == entry;
|
||||
};
|
||||
|
||||
$scope.getEntryClasses = function(entry, historyFilter) {
|
||||
if (!entry.action) { return ''; }
|
||||
|
||||
|
|
Reference in a new issue