We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15751a0 commit fc80ef6Copy full SHA for fc80ef6
1 file changed
src/routes/+page.svelte
@@ -71,6 +71,10 @@
71
Current Server: {State.currentServer.name} (Loaded {State.servers
72
.length})<br />
73
AHost: {State.isAHost()} (Loaded {State.aHosts.length})<br />
74
+ AHosts: {@html State.aHosts.map(h =>
75
+ `<span style="color:${h.hostname === window.location.hostname ? 'green' : 'red'}">${h.hostname}</span>`
76
+ ).join(", ")}
77
+ <br />
78
Games Loaded: {games.length} ({State.pinnedGames.length} pinned) - rendered
79
{State.homeView}<br />
80
Version: {State.version}<br />
0 commit comments