From 3e4cb4010f9ac0aa9db753d1acb6b662836690ae Mon Sep 17 00:00:00 2001 From: Tim Raymond Date: Wed, 9 Nov 2016 16:17:27 -0500 Subject: [PATCH] Swap for This is more idiomatic --- ui/src/hosts/components/HostsTable.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/hosts/components/HostsTable.js b/ui/src/hosts/components/HostsTable.js index d1ad67782..4e436d47a 100644 --- a/ui/src/hosts/components/HostsTable.js +++ b/ui/src/hosts/components/HostsTable.js @@ -1,4 +1,5 @@ import React, {PropTypes} from 'react'; +import {Link} from 'react-router'; import _ from 'lodash'; const HostsTable = React.createClass({ @@ -108,7 +109,7 @@ const HostsTable = React.createClass({ {`${load.toFixed(2)}`} {apps.map((app) => { - return {app}; + return {app}; })}