From d50f81d00ede787d7bbad7c13d9cb04402c636c2 Mon Sep 17 00:00:00 2001 From: hc-github-team-nomad-core <82989552+hc-github-team-nomad-core@users.noreply.github.com> Date: Tue, 4 Oct 2022 12:53:13 -0400 Subject: [PATCH] backport of commit a67937475f5d1276ddd91bc2311aee9d35a40c80 (#14796) This pull request was automerged via backport-assistant --- ui/app/components/allocation-row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();