Skip to content

Commit

Permalink
feat: show subtitles in DMX signal list
Browse files Browse the repository at this point in the history
  • Loading branch information
plaa committed Jun 13, 2024
1 parent 57b18a9 commit 2586649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DmxEvents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<p>
<select v-model="selectedChannel">
<option disabled>Choose channel</option>
<option v-for="c in Object.keys(channels)" :key="c" :value="c">
{{ c }} ({{ channels[c] }})
<option v-for="c in Object.keys(channels)" :key="c" :value="c" :disabled="!channels[c]">
{{ c }} {{ channels[c] ? `(${channels[c]})` : ""}}
</option>
</select>
&nbsp;&nbsp;&nbsp;
Expand Down

0 comments on commit 2586649

Please sign in to comment.