Skip to content

Commit

Permalink
fix: Add hostname under ip on swarm
Browse files Browse the repository at this point in the history
  • Loading branch information
mrv777 authored and eandersson committed Nov 9, 2024
1 parent 361730a commit cd5b549
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
</tr>
<ng-container *ngFor="let axe of swarm">
<tr>
<td><a [href]="'http://'+axe.IP" target="_blank">{{axe.IP}}</a></td>
<td>
<a class="text-primary" [href]="'http://'+axe.IP" target="_blank">{{axe.IP}}</a>
<div class="text-xs">{{axe.hostname}}</div>
</td>
<td>{{axe.hashRate * 1000000000 | hashSuffix}}</td>
<td>{{axe.uptimeSeconds | dateAgo}}</td>
<td>{{axe.sharesAccepted | number: '1.0-0'}}</td>
Expand Down

0 comments on commit cd5b549

Please sign in to comment.