mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 22:58:30 +01:00
hide mempool count line before start of data
This commit is contained in:
parent
ef5d2606b7
commit
c80201e3db
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
|||
}
|
||||
|
||||
generateCountArray(mempoolStats: OptimizedMempoolStats[]) {
|
||||
return mempoolStats.map(stats => [stats.added * 1000, stats.count]);
|
||||
return mempoolStats.filter(stats => stats.count > 0).map(stats => [stats.added * 1000, stats.count]);
|
||||
}
|
||||
|
||||
mountFeeChart() {
|
||||
|
|
Loading…
Add table
Reference in a new issue