Remove extra attributes in RoutesLink.

Forgot to clean them up while reverting the nexthop feature in routes view.
This commit is contained in:
Benedikt Rudolph 2018-03-20 16:09:32 +01:00 committed by Matthias Hannig
parent 0a27618421
commit 3038735921

View File

@ -95,32 +95,28 @@ class NeighboursTable extends React.Component {
<td>
<RoutesLink routeserverId={this.props.routeserverId}
protocol={n.id}
state={n.state}
nextHop={n.address}>
state={n.state}>
{received_count}
</RoutesLink>
</td>
<td>
<RoutesLink routeserverId={this.props.routeserverId}
protocol={n.id}
state={n.state}
nextHop={n.address}>
state={n.state}>
{accepted_count}
</RoutesLink>
</td>
<td>
<RoutesLink routeserverId={this.props.routeserverId}
protocol={n.id}
state={n.state}
nextHop={n.address}>
state={n.state}>
{received_count - accepted_count}
</RoutesLink>
</td>
<td>
<RoutesLink routeserverId={this.props.routeserverId}
protocol={n.id}
state={n.state}
nextHop={n.address}>
state={n.state}>
{n.routes_exported}
</RoutesLink>
</td>