improve block scrolling & new block animation

This commit is contained in:
Mononaut
2022-12-27 11:33:08 -06:00
parent 7be3ed416e
commit 32bf30872d
6 changed files with 180 additions and 114 deletions

View File

@@ -33,8 +33,8 @@ export class BlockchainComponent implements OnInit, OnDestroy {
this.timeLtrSubscription.unsubscribe();
}
trackByPageFn(index: number, item: { height: number }) {
return item.height;
trackByPageFn(index: number, item: { index: number }) {
return item.index;
}
toggleTimeDirection() {