Skip to content

Commit

Permalink
hide heat number if not available
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Jul 19, 2024
1 parent 0fb0ff4 commit de95cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/device-stream/Display.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<div class="font-bold text-8xl">
{{ clock }}
</div>
<div>
<div v-if="heatInfo.data.value?.[0]?.HeatNumber">
<span class="text-5xl">heat&nbsp;</span>
<span v-if="heatInfo.data.value" class="text-8xl font-bold">{{ heatInfo.data.value[0].HeatNumber }}</span>
<span class="text-8xl font-bold">{{ heatInfo.data.value[0].HeatNumber }}</span>
</div>
</div>
Expand Down

0 comments on commit de95cd3

Please sign in to comment.