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

Fix EndpointSubset.toString() to work without ports

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-05-03 22:29:41 +03:00
parent 03aab714d8
commit ee9879d171

View File

@ -86,6 +86,9 @@ export class EndpointSubset implements IEndpointSubset {
return ""
}
return this.addresses.map(address => {
if (!this.ports) {
return address.ip
}
return this.ports.map(port => {
return `${address.ip}:${port.port}`
}).join(", ")