Compare commits

...

1 Commits

Author SHA1 Message Date
alice groux
c48709fc3e fix(applications/ports-mapping): load balancer link expand only if the item length > 1 2020-11-24 15:45:21 +01:00

View File

@@ -87,7 +87,7 @@ class KubernetesApplicationsController {
_.forEach(this.ports, (item) => {
item.Expanded = false;
item.Highlighted = false;
if (item.Name === application.Name) {
if (item.Name === application.Name && item.Ports.length > 1) {
item.Expanded = true;
item.Highlighted = true;
}