Make sure to support capital letters in the commit sha
This commit is contained in:
parent
7b5c238572
commit
864bedf79b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue