Merge pull request #4752 from mempool/mononaut/loading-goggles

Fix stuck Goggles on websocket reconnect
This commit is contained in:
wiz
2024-03-09 13:49:48 +09:00
committed by GitHub
4 changed files with 5 additions and 6 deletions

View File

@@ -236,7 +236,7 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit {
acc.unshift(stats);
acc = acc.slice(0, 120);
return acc;
}, mempoolStats)
}, (mempoolStats || []))
),
of(mempoolStats)
);