Skip to content
Snippets Groups Projects
Commit afeda26d authored by Karolína Dočkalová Burská's avatar Karolína Dočkalová Burská
Browse files

Merge branch 'container-fix' into 'master'

Fix containers tooltip visibility

See merge request muni-kypo-crp/frontend-angular/models/kypo-angular-topology-model!32
parents efd1ebb7 2cc83cce
Branches
Tags
No related merge requests found
14.0.4 Fix containers visibility check.
14.0.3 Add container field to host node. 14.0.3 Add container field to host node.
14.0.2 Fix module name. 14.0.2 Fix module name.
14.0.1 Rename from kypo2 to kypo. 14.0.1 Rename from kypo2 to kypo.
......
...@@ -150,5 +150,8 @@ ...@@ -150,5 +150,8 @@
} }
} }
} }
},
"cli": {
"analytics": false
} }
} }
This diff is collapsed.
...@@ -22,7 +22,7 @@ export class HostNode extends Node implements Connectable { ...@@ -22,7 +22,7 @@ export class HostNode extends Node implements Connectable {
result += ports; result += ports;
counter++; counter++;
}); });
if (this.containers != null) { if (this.containers.length < 1) {
result += '\nContainers:'; result += '\nContainers:';
for (let i = 0; i < this.containers.length; i++) { for (let i = 0; i < this.containers.length; i++) {
result += '\n' + this.containers[i]; result += '\n' + this.containers[i];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment