[ARVADOS-WORKBENCH2] updated: 2.4.0-34-gd39fc21c
Git user
git at public.arvados.org
Tue Apr 19 20:09:23 UTC 2022
Summary of changes:
src/views/process-panel/process-details-attributes.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via d39fc21c7dec5878a9f508295add946216818139 (commit)
from 1bb147efcf6a17c0b4237c790757dd54994005b2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit d39fc21c7dec5878a9f508295add946216818139
Author: Stephen Smith <stephen at curii.com>
Date: Tue Apr 19 16:08:23 2022 -0400
16068: Use composed process status for process details attribute
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>
diff --git a/src/views/process-panel/process-details-attributes.tsx b/src/views/process-panel/process-details-attributes.tsx
index 4eadb656..d0e593d5 100644
--- a/src/views/process-panel/process-details-attributes.tsx
+++ b/src/views/process-panel/process-details-attributes.tsx
@@ -10,7 +10,7 @@ import { resourceLabel } from "common/labels";
import { DetailsAttribute } from "components/details-attribute/details-attribute";
import { ResourceKind } from "models/resource";
import { ContainerRunTime, ResourceOwnerWithName } from "views-components/data-explorer/renderers";
-import { getProcess } from "store/processes/process";
+import { getProcess, getProcessStatus } from "store/processes/process";
import { RootState } from "store/store";
import { connect } from "react-redux";
import { ProcessResource } from "models/process";
@@ -85,7 +85,7 @@ export const ProcessDetailsAttributes = withStyles(styles, { withTheme: true })(
<DetailsAttribute label='Container UUID' value={containerRequest.containerUuid} />
</Grid>
{!props.hideProcessPanelRedundantFields && <Grid item xs={12} md={mdSize}>
- <DetailsAttribute label='Status' value={containerRequest.state} />
+ <DetailsAttribute label='Status' value={getProcessStatus({containerRequest, container})} />
</Grid>}
<Grid item xs={12} md={mdSize}>
<DetailsAttribute label='Created at' value={formatDate(containerRequest.createdAt)} />
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list