Some improvements to image tracks in the repo list view

This commit is contained in:
Joseph Schorr 2015-03-10 11:00:11 -07:00
parent afc8e95e19
commit 3d3c8ca198
4 changed files with 26 additions and 6 deletions

View file

@ -215,6 +215,10 @@ angular.module('quay').directive('repoPanelTags', function () {
$scope.noTagFilter = function(tag) {
return false;
};
$scope.imageIDFilter = function(image_id, tag) {
return tag.image_id == image_id;
};
}
};
return directiveDefinitionObject;