From d50652c92473a9ee70864d496e2c5fe691e8f12f Mon Sep 17 00:00:00 2001 From: Scott Weber Date: Tue, 13 Dec 2016 14:55:16 -0500 Subject: [PATCH] Adding bordered styles to panelRows and link to manage routes --- static_src/components/routes_panel.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static_src/components/routes_panel.jsx b/static_src/components/routes_panel.jsx index cbc2ef09..1823c145 100644 --- a/static_src/components/routes_panel.jsx +++ b/static_src/components/routes_panel.jsx @@ -152,11 +152,11 @@ export default class RoutesPanel extends React.Component { } renderRoutes(routes) { - let content =

No routes

; + let content =

No routes

; if (routes && routes.length) { content = routes.map((route) => - + ); @@ -172,6 +172,7 @@ export default class RoutesPanel extends React.Component {

Bound routes

+ Manage routes in {this.spaceLink}
{ this.renderRoutes(this.state.boundRoutes) }