Skip to content

Commit

Permalink
Run the formatter and remove an unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
frostburn committed Apr 15, 2024
1 parent 71f09fe commit 770d89f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/views/MidiView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Input, Output, WebMidi, type NoteMessageEvent, type MessageEvent } from
import MidiPiano from '@/components/MidiPiano.vue'
import { useMidiStore } from '@/stores/midi'
import { useScaleStore } from '@/stores/scale'
import { divNodes } from 'sonic-weave'
const props = defineProps<{
midiInputChannels: Set<number>
Expand Down Expand Up @@ -168,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 @@ -275,7 +274,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 770d89f

Please sign in to comment.