1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

always show reason, if there is any

This commit is contained in:
Matthias Hannig
2018-10-03 17:56:25 +02:00
parent ab4838f247
commit 7684179ba3

View File

@ -43,10 +43,9 @@ export const ColNetwork = function(props) {
<td className="col-route-network">
<span className="route-network" onClick={props.onClick}>
{props.route.network}
</span>
{props.displayReasons == ROUTES_FILTERED && <FilterReason route={props.route} />}
{props.displayReasons == ROUTES_NOT_EXPORTED && <NoexportReason route={props.route} />}
<FilterReason route={props.route} />
<NoexportReason route={props.route} />
</td>
);
}