Skip to content

Commit

Permalink
show snr for nodes heard directly
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Dec 23, 2024
1 parent 67a270c commit 9fa2f9f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/nodes/NodeListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<span v-else>{{ node.hopsAway }} Hops</span>
</span>

<!-- snr (only shown for direct nodes) -->
<span v-if="node.hopsAway === 0" class="flex my-auto text-sm text-gray-500 space-x-1">
<span>• SNR {{ node.snr }}</span>
</span>

</div>

</div>
Expand Down

0 comments on commit 9fa2f9f

Please sign in to comment.