mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
Detect if stdout field is null or undefined.
This commit is contained in:
@@ -196,7 +196,7 @@ function JobRenderService ($q, $sce, $window) {
|
||||
};
|
||||
|
||||
this.transformEvent = event => {
|
||||
if (!event || !event.stdout) {
|
||||
if (!event || event.stdout === null || event.stdout === undefined) {
|
||||
return { html: '', count: 0 };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user