Skip to content

Commit

Permalink
add border under our node
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Nov 18, 2024
1 parent 83d8f5c commit 4f44f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/nodes/NodesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<!-- nodes -->
<div class="h-full overflow-y-auto">
<NodeListItem :key="node.num" v-for="node of searchedNodes" :node="node" @click="onNodeClick(node)"/>
<NodeListItem :key="node.num" v-for="node of searchedNodes" :node="node" @click="onNodeClick(node)" :class="{ 'border-b': node.num === GlobalState.myNodeId }"/>
</div>

</div>
Expand Down

0 comments on commit 4f44f0a

Please sign in to comment.