[ARVADOS-WORKBENCH2] updated: 1.4.1-59-g0ac34fb8
Git user
git at public.curoverse.com
Thu Oct 24 14:02:12 UTC 2019
Summary of changes:
src/views/site-manager-panel/site-manager-panel-root.tsx | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
via 0ac34fb81d10d664c7b7994612504f989d1c3d29 (commit)
from 589629e80967dc1f318561fbe6a4174e1da231a6 (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 0ac34fb81d10d664c7b7994612504f989d1c3d29
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date: Thu Oct 24 10:01:54 2019 -0400
15530: Don't link if remoteHostConfig is undefined
diff --git a/src/views/site-manager-panel/site-manager-panel-root.tsx b/src/views/site-manager-panel/site-manager-panel-root.tsx
index 9ba7a2d8..c0a64e1c 100644
--- a/src/views/site-manager-panel/site-manager-panel-root.tsx
+++ b/src/views/site-manager-panel/site-manager-panel-root.tsx
@@ -123,7 +123,7 @@ export const SiteManagerPanelRoot = compose(
<Grid item xs={12}>
<Typography paragraph={true} >
You can log in to multiple Arvados sites here, then use the multi-site search page to search collections and projects on all sites at once.
- </Typography>
+ </Typography>
</Grid>
</Grid>
<Grid item xs={12}>
@@ -141,7 +141,9 @@ export const SiteManagerPanelRoot = compose(
{sessions.map((session, index) => {
const validating = session.status === SessionStatus.BEING_VALIDATED;
return <TableRow key={index} className={classes.tableRow}>
- <TableCell><a href={remoteHostsConfig[session.clusterId].workbench2Url}>{session.clusterId}</a></TableCell>
+ <TableCell>{remoteHostsConfig[session.clusterId] ?
+ <a href={remoteHostsConfig[session.clusterId].workbench2Url}>{session.clusterId}</a>
+ : session.clusterId}</TableCell>
<TableCell>{session.remoteHost}</TableCell>
<TableCell>{validating ? <CircularProgress size={20} /> : session.username}</TableCell>
<TableCell>{validating ? <CircularProgress size={20} /> : session.email}</TableCell>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list