From 61f659a59ba1ab344c1c0433e24c50a71daf61eb Mon Sep 17 00:00:00 2001 From: Matthias Hannig Date: Fri, 3 Aug 2018 14:46:01 +0200 Subject: [PATCH] fixed css class --- .../routeservers/large-communities/noexport-reason.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/components/routeservers/large-communities/noexport-reason.jsx b/client/components/routeservers/large-communities/noexport-reason.jsx index 709706f..9c644d1 100644 --- a/client/components/routeservers/large-communities/noexport-reason.jsx +++ b/client/components/routeservers/large-communities/noexport-reason.jsx @@ -17,7 +17,11 @@ class NoExportReason extends React.Component { return null; } const noexport_reason = this.props.noexport_reasons[reason[0][2]]; - return

{noexport_reason}

; + return ( +

+ {noexport_reason} +

); } } @@ -28,5 +32,5 @@ export default connect( asn: state.routeservers.noexport_asn, reject_id: state.routeservers.noexport_id } - } + } )(NoExportReason);