Remove the HTML escaping in the dockerfile-view directive; the text escaping is handled by the nested controls and Angular itself
This commit is contained in:
parent
06350fb9ae
commit
85ce3c6bb2
1 changed files with 1 additions and 1 deletions
|
@ -4343,7 +4343,7 @@ quayApp.directive('dockerfileView', function () {
|
|||
}
|
||||
|
||||
var lineInfo = {
|
||||
'text': UtilService.textToSafeHtml(line),
|
||||
'text': line,
|
||||
'kind': kind
|
||||
};
|
||||
$scope.lines.push(lineInfo);
|
||||
|
|
Reference in a new issue