[ARVADOS-WORKBENCH2] updated: 1.4.1-368-g625e7240
Git user
git at public.arvados.org
Mon Jun 29 20:18:22 UTC 2020
Summary of changes:
src/views/not-found-panel/not-found-panel-root.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 625e72407ad730e05c1551df3e2919a1a9ffd3e4 (commit)
from 51041db20a296235ca14c6cc73f1ff7f1db2c0b7 (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 625e72407ad730e05c1551df3e2919a1a9ffd3e4
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Mon Jun 29 22:17:12 2020 +0200
14990: added undefined handling
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
diff --git a/src/views/not-found-panel/not-found-panel-root.tsx b/src/views/not-found-panel/not-found-panel-root.tsx
index 439807fd..9bbf246e 100644
--- a/src/views/not-found-panel/not-found-panel-root.tsx
+++ b/src/views/not-found-panel/not-found-panel-root.tsx
@@ -63,7 +63,7 @@ export const NotFoundPanelRoot = withStyles(styles)(
<h2>Not Found</h2>
{ getAdditionalMessage(location) }
<p>
- The page you requested was not found, <a className={classes.active} href={`mailto:${clusterConfig.Mail!.SupportEmailAddress}`}>email us</a> us if you suspect this is a bug.
+ The page you requested was not found, <a className={classes.active} href={`mailto:${(clusterConfig.Mail || {}).SupportEmailAddress}`}>email us</a> us if you suspect this is a bug.
</p>
</div>
</Grid>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list