Fix stuck Goggles on websocket reconnect

This commit is contained in:
Mononaut
2024-03-08 16:47:15 +00:00
parent 29bbb922c5
commit dde6719306
4 changed files with 5 additions and 6 deletions

View File

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