Update topology-summary.component.html

This commit is contained in:
piotrpekala7 2021-01-21 18:02:22 +01:00
parent 140e56643d
commit b114c7db81

View File

@ -72,6 +72,12 @@
<div class="summaryContentServers">
<div class="nodeRow" *ngFor="let compute of computes">
<div>
<svg *ngIf="compute.connected" width="10" height="10">
<rect class="status_started" x="0" y="0" width="10" height="10" fill="green"></rect>
</svg>
<svg *ngIf="!compute.connected" width="10" height="10">
<rect class="status_stopped" x="0" y="0" width="10" height="10" fill="red"></rect>
</svg>
{{compute.name}}
</div>
<div>