From 0e643501de1abe0d18b2d996f3e48df928bb8c00 Mon Sep 17 00:00:00 2001 From: Logan Attwood Date: Wed, 1 Nov 2023 16:23:43 -0300 Subject: [PATCH] Fix the "Starting" allocations link (#18866) Before this commit, it would bring you to the list of allocations filtered by status=starting. This status does not exist in the Status drop-down on the Allocations section of a job in the UI. --- ui/app/components/allocation-status-bar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/allocation-status-bar.js b/ui/app/components/allocation-status-bar.js index ccd9e2147..6aa2683fa 100644 --- a/ui/app/components/allocation-status-bar.js +++ b/ui/app/components/allocation-status-bar.js @@ -59,7 +59,7 @@ export default class AllocationStatusBar extends DistributionBar { value: allocs.startingAllocs, className: 'starting', layers: 2, - legendLink: this.generateLegendLink(this.job, 'starting'), + legendLink: this.generateLegendLink(this.job, 'pending'), }, { label: 'Running',