feat: update

parent 3598c691
...@@ -75,11 +75,3 @@ label { ...@@ -75,11 +75,3 @@ label {
.fa.fa-undefined:before { .fa.fa-undefined:before {
content: "\f26c"; content: "\f26c";
} }
.fa.fa-Linux:before {
content: "\f17c";
}
.fa.fa-Windows:before {
content: "\f17a";
}
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<label for="hostgroup-{{i}}">{{hostGroup.name}}</label> <label for="hostgroup-{{i}}">{{hostGroup.name}}</label>
<ul [ngClass]="{'insearch': q }"> <ul [ngClass]="{'insearch': q }">
<li *ngFor="let host of hostGroup.assets_granted | SearchFilter: q" (click)="Connect(host)"> <li *ngFor="let host of hostGroup.assets_granted | SearchFilter: q" (click)="Connect(host)">
<i class="fa" [ngClass]="'fa-'+host.plantform" id="fa-{{i}}"></i> <i class="fa" [ngClass]="'fa-'+(host.plantform||'undefined').toLowerCase()" id="fa-{{i}}"></i>
{{host.hostname}} {{host.hostname}}
</li> </li>
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment