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,6 +57,7 @@ export class Ingresses extends React.Component<IngressesProps> {
ingress.getNs(), ingress.getNs(),
ingress.getLoadBalancers().map(lb => <p key={lb}>{lb}</p>), ingress.getLoadBalancers().map(lb => <p key={lb}>{lb}</p>),
ingress.getRouteDecls().map(route => ( ingress.getRouteDecls().map(route => (
<>
<a <a
key={route.url} key={route.url}
href={route.url} href={route.url}
@ -65,7 +66,8 @@ export class Ingresses extends React.Component<IngressesProps> {
onClick={e => e.stopPropagation()} onClick={e => e.stopPropagation()}
> >
{route.url} {route.url}
</a> </a> {route.service}
</>
)), )),
<KubeObjectAge key="age" object={ingress} />, <KubeObjectAge key="age" object={ingress} />,
]} ]}