Skip to content

Commit

Permalink
fix: node select background color #452 (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored May 7, 2020
1 parent 3a8b304 commit a21f027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ControlPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
>
<template v-slot:item="{ item }">
<tr
:style="{cursor:'pointer', background: selectedNode === item ? '#eee' : 'none'}"
:style="{cursor:'pointer', background: selectedNode === item ? $vuetify.theme.themes.light.accent : 'none'}"
@click.stop="selectNode(item)"
>
<td>{{ item.node_id }}</td>
Expand Down

0 comments on commit a21f027

Please sign in to comment.