diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 20:06:38 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 20:08:55 +0200 |
commit | 916ab40d65c9c25f63256f2cd98be297c3da2208 (patch) | |
tree | dcf07544310fd34f79e72f34ef0e653f30a163f0 /src_frontend/App.svelte | |
parent | 4ee57ab935718a269fe7ab65b26ff27837d49003 (diff) | |
download | Luxcena-Neo-916ab40d65c9c25f63256f2cd98be297c3da2208.tar.gz Luxcena-Neo-916ab40d65c9c25f63256f2cd98be297c3da2208.zip |
:bug: Small bugfixes
Diffstat (limited to 'src_frontend/App.svelte')
-rw-r--r-- | src_frontend/App.svelte | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src_frontend/App.svelte b/src_frontend/App.svelte index d9f5f92..c5648ca 100644 --- a/src_frontend/App.svelte +++ b/src_frontend/App.svelte @@ -30,10 +30,10 @@ component: UnknownRoute })); - let updateInProgess = false; - openSocket.on("updater", (state) => { - if (state == "start") { updateInProgess = true; } - }); + //let updateInProgess = false; + //openSocket.on("updater", (state) => { + // if (state == "start") { updateInProgess = true; } + //}); </script> <style> @@ -104,7 +104,7 @@ </style> -{#if $updateInProgess || $connected} +{#if $connected} <Router routes={main_router_routes} /> {:else if $reconnecting} <div class="no-connection"> @@ -116,4 +116,4 @@ <div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div> <div>No server connection, attempting to connect...</div> </div> -{/if}
\ No newline at end of file +{/if} |