Merge pull request #3116 from quay/brackets-in-labels
Fix display of brackets in the labels view
This commit is contained in:
commit
c92c0ca5e1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ angular.module('quay').directive('labelView', function () {
|
|||
bootbox.alert({
|
||||
size: "small",
|
||||
title: $scope.label.key,
|
||||
message: '<pre>' + $sanitize($scope.label.value) + '</pre>'
|
||||
message: '<pre>' + $sanitize($scope.label.value.replace('<', '<').replace('>', '>')) + '</pre>'
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue