Skip to content

Commit 83260d0

Browse files
committed
fix local dashboard for HA
1 parent 15dc009 commit 83260d0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

internal/master/dashboard.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@
106106
</div>
107107

108108
<div class="footer">
109-
<a href="/metrics">/metrics</a>
110-
<a href="/health">/health</a>
111-
<a href="/api/status">/api/status</a>
109+
<a href="metrics">/metrics</a>
110+
<a href="health">/health</a>
111+
<a href="api/status">/api/status</a>
112112
<span class="footer-sep" id="last-sync"></span>
113113
</div>
114114

@@ -292,7 +292,7 @@
292292

293293
async function refresh() {
294294
try {
295-
var res = await fetch('/api/status');
295+
var res = await fetch('api/status');
296296
if(!res.ok) throw new Error('HTTP '+res.status);
297297
var data = await res.json();
298298
clearOffline();

0 commit comments

Comments
 (0)