Skip to content
  • Rate limit · GitHub

    Access has been restricted

    You have triggered a rate limit.

    Please wait a few minutes before you try again;
    in some cases this may take up to an hour.

  • Notifications You must be signed in to change notification settings
  • Fork 18

Commit

Permalink
fix(dashboard): fix error about cpu temp when changing nodes
Browse files Browse the repository at this point in the history
ravenclaw900 committed Jul 2, 2022
1 parent 41c4448 commit 495fe5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/pages/Home.svelte
Original file line number Diff line number Diff line change
@@ -272,7 +272,7 @@
</Card>
<Card header="System Stats">
{#if ramData != undefined}
{#if socketData.temp.available}
{#if socketData.temp != undefined && socketData.temp.available}
<div class="text-center">
<span class={getTempClass(socketData.temp.celsius)}>
{socketData.temp.celsius}ºC/{socketData.temp

0 comments on commit 495fe5e

Please sign in to comment.