Commit 2ee6548b authored by Dannon Baker's avatar Dannon Baker
Browse files

Shift 'queued' state lower in priority; anything but 'new' is higher

than it now.
parent 2efbd0ef
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"];