Skip to content

Commit

Permalink
fixing MidiView
Browse files Browse the repository at this point in the history
  • Loading branch information
000masa000 committed Apr 16, 2024
1 parent a6cfd7f commit c38f3b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/MidiView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ onUnmounted(() => {
<div class="control channels-wrapper">
<label>Input channels</label>
<span v-for="channel in 16" :key="channel">
<label :class="{ active: inputHighlights.has(channel) }">{{channel}}</label>
<label :class="{ active: inputHighlights.has(channel) }">{{ channel }}</label>
<input
type="checkbox"
:value="channel"
Expand Down Expand Up @@ -232,7 +232,7 @@ onUnmounted(() => {
<div class="control channels-wrapper">
<label>Output channels</label>
<span v-for="channel in 16" :key="channel">
<label>{{ ' ' + channel + ' ' }}</label>
<label>{{ channel }}</label>
<input
type="checkbox"
:value="channel"
Expand Down

0 comments on commit c38f3b6

Please sign in to comment.