Make sure to support capital letters in the commit sha

This commit is contained in:
Joseph Schorr 2015-04-23 15:24:41 -04:00
parent 7b5c238572
commit 864bedf79b

View file

@ -195,7 +195,7 @@ angular.module('quay').directive('repoPanelTags', function () {
}; };
$scope.commitTagFilter = function(tag) { $scope.commitTagFilter = function(tag) {
var r = new RegExp('^[0-9a-f]{7}$'); var r = new RegExp('^[0-9a-fA-F]{7}$');
return tag.name.match(r); return tag.name.match(r);
}; };