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:
Joseph Schorr 2014-07-16 16:47:59 -04:00
parent 06350fb9ae
commit 85ce3c6bb2

View file

@ -4343,7 +4343,7 @@ quayApp.directive('dockerfileView', function () {
}
var lineInfo = {
'text': UtilService.textToSafeHtml(line),
'text': line,
'kind': kind
};
$scope.lines.push(lineInfo);