Make sure we don't show more than 6 rows in channel ranking widget
This commit is contained in:
@@ -56,7 +56,7 @@ export class TopNodesPerChannels implements OnInit {
|
||||
iso: ranking.topByChannels[i].iso_code,
|
||||
};
|
||||
}
|
||||
return ranking.topByChannels;
|
||||
return ranking.topByChannels.slice(0, 6);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user