mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
fix bad block 1 link
This commit is contained in:
parent
1933a6535e
commit
d3d66dbf18
1 changed files with 1 additions and 1 deletions
|
|
@ -569,7 +569,7 @@ export class BlockComponent implements OnInit, OnDestroy {
|
|||
} else {
|
||||
this.showPreviousBlocklink = true;
|
||||
}
|
||||
if (this.latestBlock.height && this.latestBlock.height === this.blockHeight) {
|
||||
if (this.latestBlock.height != null && this.latestBlock.height === this.blockHeight) {
|
||||
this.showNextBlocklink = false;
|
||||
} else {
|
||||
this.showNextBlocklink = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue