diff --git a/ui/app/components/allocation-row.js b/ui/app/components/allocation-row.js index 7d87481c7e0..0a22a2fe282 100644 --- a/ui/app/components/allocation-row.js +++ b/ui/app/components/allocation-row.js @@ -106,7 +106,7 @@ async function qualifyAllocation() { // Make sure that the job record in the store for this allocation // is complete and not a partial from the list endpoint const job = allocation.get('job.content'); - if (job) await job.reload(); + if (job.isPartial) await job.reload(); } this.fetchStats.perform();