diff --git a/static/directives/repo-view/repo-panel-tags.html b/static/directives/repo-view/repo-panel-tags.html index 5f32f4cb9..e8332b4cc 100644 --- a/static/directives/repo-view/repo-panel-tags.html +++ b/static/directives/repo-view/repo-panel-tags.html @@ -298,7 +298,7 @@ - +
diff --git a/static/js/directives/repo-view/repo-panel-tags.js b/static/js/directives/repo-view/repo-panel-tags.js index 80b817ffa..9fbe7c2ba 100644 --- a/static/js/directives/repo-view/repo-panel-tags.js +++ b/static/js/directives/repo-view/repo-panel-tags.js @@ -20,7 +20,9 @@ angular.module('quay').directive('repoPanelTags', function () { 'getImages': '&getImages' }, - controller: function($scope, $element, $filter, $location, ApiService, UIService, VulnerabilityService, TableService) { + controller: function($scope, $element, $filter, $location, ApiService, UIService, VulnerabilityService, TableService, Features) { + $scope.Features = Features; + $scope.maxTrackCount = 5; $scope.checkedTags = UIService.createCheckStateController([], 'name');