mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
Merge pull request #6175 from mempool/mononaut/block-1-link
fix bad block 1 link
This commit is contained in:
commit
9812fb4bb4
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