From 7b7b643797b42c03188dd71ef99a920279b25826 Mon Sep 17 00:00:00 2001 From: Roland Schilter Date: Thu, 17 Aug 2017 17:35:10 +0100 Subject: [PATCH] Fix processes/hosts table not appearing (#2824) --- client/app/scripts/components/cloud-link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/scripts/components/cloud-link.js b/client/app/scripts/components/cloud-link.js index 315919e7b..84933e0bd 100644 --- a/client/app/scripts/components/cloud-link.js +++ b/client/app/scripts/components/cloud-link.js @@ -57,7 +57,7 @@ class LinkWrapper extends React.Component { render() { const { url, children, ...props } = this.props; if (!url) { - return children; + return React.isValidElement(children) ? children : ({children}); } const href = this.buildHref(url);