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.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 <>
key={route.url} <a
href={route.url} key={route.url}
rel="noreferrer" href={route.url}
target="_blank" rel="noreferrer"
onClick={e => e.stopPropagation()} target="_blank"
> onClick={e => e.stopPropagation()}
{route.url} >
</a> {route.url}
</a> {route.service}
</>
)), )),
<KubeObjectAge key="age" object={ingress} />, <KubeObjectAge key="age" object={ingress} />,
]} ]}