mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Make sure we don't show more than 6 rows in channel ranking widget
This commit is contained in:
parent
98e709b739
commit
92862939da
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export class TopNodesPerChannels implements OnInit {
|
|||
iso: ranking.topByChannels[i].iso_code,
|
||||
};
|
||||
}
|
||||
return ranking.topByChannels;
|
||||
return ranking.topByChannels.slice(0, 6);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue