Some improvements to image tracks in the repo list view
This commit is contained in:
parent
afc8e95e19
commit
3d3c8ca198
4 changed files with 26 additions and 6 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue