mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +01:00
Add link to nodes per country list component
This commit is contained in:
parent
63ebace378
commit
b4bcd84a53
1 changed files with 3 additions and 1 deletions
|
@ -34,7 +34,9 @@
|
|||
<tbody [attr.data-cy]="'pools-table'" *ngIf="(nodesPerCountryObservable$ | async) as countries">
|
||||
<tr *ngFor="let country of countries">
|
||||
<td class="text-left rank" *ngIf="!isMobile()">{{ country.rank }}</td>
|
||||
<td class="text-left text-truncate name">{{ country.name.en }}</td>
|
||||
<td class="text-left text-truncate name">
|
||||
<a [routerLink]="['/lightning/nodes/country' | relativeUrl, country.iso]">{{ country.name.en }}</a>
|
||||
</td>
|
||||
<td class="text-right share" *ngIf="!isMobile()">{{ country.share }}%</td>
|
||||
<td class="text-right nodes">{{ country.count }}</td>
|
||||
<td class="text-right capacity">
|
||||
|
|
Loading…
Add table
Reference in a new issue