diff --git a/awx/ui/client/features/output/stats.partial.html b/awx/ui/client/features/output/stats.partial.html
index c43992eed8..c04df0d8d0 100644
--- a/awx/ui/client/features/output/stats.partial.html
+++ b/awx/ui/client/features/output/stats.partial.html
@@ -1,21 +1,21 @@
plays
-
...
-
{{ vm.plays }}
+
...
+
{{ vm.plays || 0 }}
tasks
-
...
-
{{ vm.tasks }}
+
...
+
{{ vm.tasks || 0 }}
{{:: vm.strings.get('stats.HOSTS')}}
-
...
-
{{ vm.hosts }}
+
...
+
{{ vm.hosts || 0 }}
{{:: vm.strings.get('stats.ELAPSED') }}
-
...
-
- {{ vm.elapsed * 1000 | duration: "hh:mm:ss" }}
+ ...
+
+ {{ (vm.elapsed * 1000 || 0) | duration: "hh:mm:ss"}}