Skip to content

Commit 6cd595a

Browse files
fix(monitor): hide explorer URL row when unset (#1617)
1 parent 3e11fe5 commit 6cd595a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.13.4 (TBD)
4+
5+
### Fixes
6+
7+
- Fixed network monitor displaying explorer URL as a "null" hyperlink when unset ([#1617](https://github.com/0xMiden/miden-node/pull/1617)).
8+
39
## v0.13.3 (2026-01-29)
410

511
### Fixes

bin/network-monitor/assets/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,7 @@ function updateDisplay() {
550550
<span class="metric-label">PoW Difficulty:</span>
551551
<span class="metric-value">${details.FaucetTest.faucet_metadata.pow_load_difficulty}</span>
552552
</div>
553+
${details.FaucetTest.faucet_metadata.explorer_url ? `
553554
<div class="metric-row">
554555
<span class="metric-label">Explorer URL:</span>
555556
<span class="metric-value">
@@ -558,6 +559,7 @@ function updateDisplay() {
558559
</a>
559560
</span>
560561
</div>
562+
` : ''}
561563
</div>
562564
</div>
563565
` : ''}

0 commit comments

Comments
 (0)