[arvados-workbench2] created: 2.4.0-467-g1968561c

git repository hosting git at public.arvados.org
Wed Dec 21 16:22:21 UTC 2022


        at  1968561ceeea238bfb229d4d4166316ea7671a9b (commit)


commit 1968561ceeea238bfb229d4d4166316ea7671a9b
Author: Sarah Wait Zaranek <swz at curii.com>
Date:   Wed Dec 21 11:20:22 2022 -0500

    19642: Updating queued chip to be outline not filled
    Arvados-DCO-1.1-Signed-off-by: Sarah Wait Zaranek <swz at curii.com>

diff --git a/src/store/processes/process.ts b/src/store/processes/process.ts
index e62e5036..43107fb1 100644
--- a/src/store/processes/process.ts
+++ b/src/store/processes/process.ts
@@ -97,6 +97,10 @@ export const getProcessStatusStyles = (status: string, theme: ArvadosTheme): Rea
         case ProcessStatus.FAILED:
             color = theme.customs.colors.red900;
             break;
+        case ProcessStatus.QUEUED:
+            color = theme.customs.colors.grey600;
+            running = true;
+            break;
         default:
             color = theme.customs.colors.grey600;
             break;
diff --git a/src/views-components/data-explorer/renderers.test.tsx b/src/views-components/data-explorer/renderers.test.tsx
index b8cdb7c1..ac8729aa 100644
--- a/src/views-components/data-explorer/renderers.test.tsx
+++ b/src/views-components/data-explorer/renderers.test.tsx
@@ -56,8 +56,8 @@ describe('renderers', () => {
             [CR.FINAL, 1, C.COMPLETE, 0, {}, PS.COMPLETED, props.theme.customs.colors.green800, props.theme.palette.common.white],
             [CR.COMMITTED, 0, C.LOCKED, null, {}, PS.ONHOLD, props.theme.customs.colors.grey600, props.theme.palette.common.white],
             [CR.COMMITTED, 0, C.QUEUED, null, {}, PS.ONHOLD, props.theme.customs.colors.grey600, props.theme.palette.common.white],
-            [CR.COMMITTED, 1, C.LOCKED, null, {}, PS.QUEUED, props.theme.customs.colors.grey600, props.theme.palette.common.white],
-            [CR.COMMITTED, 1, C.QUEUED, null, {}, PS.QUEUED, props.theme.customs.colors.grey600, props.theme.palette.common.white],
+            [CR.COMMITTED, 1, C.LOCKED, null, {}, PS.QUEUED, props.theme.palette.common.white, props.theme.customs.colors.grey600],
+            [CR.COMMITTED, 1, C.QUEUED, null, {}, PS.QUEUED, props.theme.palette.common.white, props.theme.customs.colors.grey600],
         ].forEach(([crState, crPrio, cState, exitCode, rs, eLabel, eColor, tColor]) => {
             it(`should render the state label '${eLabel}' and color '${eColor}' for CR state=${crState}, priority=${crPrio}, C state=${cState}, exitCode=${exitCode} and RuntimeStatus=${JSON.stringify(rs)}`, () => {
                 const containerUuid = 'zzzzz-dz642-zzzzzzzzzzzzzzz';

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list