1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add back the arrow service

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-01-05 12:12:16 -05:00
parent d8a50bc0ec
commit aa4b9bcfc6

View File

@ -57,15 +57,17 @@ export class Ingresses extends React.Component<IngressesProps> {
ingress.getNs(),
ingress.getLoadBalancers().map(lb => <p key={lb}>{lb}</p>),
ingress.getRouteDecls().map(route => (
<a
key={route.url}
href={route.url}
rel="noreferrer"
target="_blank"
onClick={e => e.stopPropagation()}
>
{route.url}
</a>
<>
<a
key={route.url}
href={route.url}
rel="noreferrer"
target="_blank"
onClick={e => e.stopPropagation()}
>
{route.url}
</a> {route.service}
</>
)),
<KubeObjectAge key="age" object={ingress} />,
]}