diff --git a/ui/app/templates/components/job-row.hbs b/ui/app/templates/components/job-row.hbs
index 54032c664..d2c62b494 100644
--- a/ui/app/templates/components/job-row.hbs
+++ b/ui/app/templates/components/job-row.hbs
@@ -12,5 +12,11 @@
{{/if}}
- {{allocation-status-bar allocationContainer=job isNarrow=true}}
+
+ {{#if job.hasChildren}}
+ {{children-status-bar job=job isNarrow=true}}
+ {{else}}
+ {{allocation-status-bar allocationContainer=job isNarrow=true}}
+ {{/if}}
+
|
diff --git a/ui/app/templates/jobs/index.hbs b/ui/app/templates/jobs/index.hbs
index 9c8c93888..34e24c33a 100644
--- a/ui/app/templates/jobs/index.hbs
+++ b/ui/app/templates/jobs/index.hbs
@@ -28,7 +28,7 @@
{{#t.sort-by prop="type"}}Type{{/t.sort-by}}
{{#t.sort-by prop="priority"}}Priority{{/t.sort-by}}
Groups |
- Allocation Status |
+ Summary |
{{/t.head}}
{{#t.body key="model.id" as |row|}}
{{job-row data-test-job-row job=row.model onClick=(action "gotoJob" row.model)}}