Unverified Commit 2512cf3b authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #14217 from dannon/collection-state-priority-fix

[22.05] Shift 'queued' state lower in priority in collection status.
parents 2efbd0ef 2ee6548b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -83,4 +83,4 @@ export const STATES = {
/** We want to display a single state for a dataset collection whose elements may have mixed states.
 * This list is ordered from highest to lowest priority. If any element is in error state the whole collection should be in error.
 */
export const HIERARCHICAL_COLLECTION_JOB_STATES = ["error", "failed", "queued", "upload", "paused", "running", "new"];
export const HIERARCHICAL_COLLECTION_JOB_STATES = ["error", "failed", "upload", "paused", "running", "queued", "new"];