From e574211e8e8f87667cd064e873742cbff9a3e0af Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 16 Nov 2015 06:21:44 +0100 Subject: [PATCH] Fix typo --- static/js/directives/repo-view/repo-panel-tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/directives/repo-view/repo-panel-tags.js b/static/js/directives/repo-view/repo-panel-tags.js index 6c4facb41..582ed3cdc 100644 --- a/static/js/directives/repo-view/repo-panel-tags.js +++ b/static/js/directives/repo-view/repo-panel-tags.js @@ -57,7 +57,7 @@ angular.module('quay').directive('repoPanelTags', function () { allTags.push(tagInfo); - if (!$scope.options.tagFilter || tagfOf($scope.options.tagFilter) >= 0 || + if (!$scope.options.tagFilter || tag.indexOf($scope.options.tagFilter) >= 0 || tagInfo.image_id.indexOf($scope.options.tagFilter) >= 0) { tags.push(tagInfo); }