mirror of
https://github.com/mempool/mempool.git
synced 2025-02-25 15:10:12 +01:00
fix: Liquid missing tooltip serie name.
This commit is contained in:
parent
f19b84090a
commit
06706be18f
1 changed files with 4 additions and 1 deletions
|
@ -85,7 +85,10 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
|||
generateArray(mempoolStats: OptimizedMempoolStats[]) {
|
||||
const finalArray: number[][] = [];
|
||||
let feesArray: number[] = [];
|
||||
const limitFeesTemplate = this.template === 'advanced' ? 28 : 21;
|
||||
let limitFeesTemplate = this.template === 'advanced' ? 28 : 21;
|
||||
if (this.stateService.network === 'liquid') {
|
||||
limitFeesTemplate = this.template === 'advanced' ? 26 : 20;
|
||||
}
|
||||
for (let index = limitFeesTemplate; index > -1; index--) {
|
||||
feesArray = [];
|
||||
mempoolStats.forEach((stats) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue