1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Merge pull request #2297 from jakemcdermott/job-results/reintroduce-ng-non-bindable

reintroduce ng-non-bindable to output lines
This commit is contained in:
Jake McDermott 2018-06-25 10:45:58 -04:00 committed by GitHub
commit 295dba8622
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ function JobRenderService ($q, $sce, $window) {
}
if (current.isHost) {
tdEvent = `<div class="at-Stdout-event--host" ng-click="vm.showHostDetails('${current.id}', '${current.uuid}')">${content}</div>`;
tdEvent = `<div class="at-Stdout-event--host" ng-click="vm.showHostDetails('${current.id}', '${current.uuid}')"><span ng-non-bindable>${content}</span></div>`;
}
if (current.time && current.line === ln) {
@ -220,7 +220,7 @@ function JobRenderService ($q, $sce, $window) {
}
if (!tdEvent) {
tdEvent = `<div class="at-Stdout-event">${content}</div>`;
tdEvent = `<div class="at-Stdout-event"><span ng-non-bindable>${content}</span></div>`;
}
if (!tdToggle) {