diff --git a/src/components/tools/ToneGenerator.vue b/src/components/tools/ToneGenerator.vue index afe85bf..d73ad1c 100644 --- a/src/components/tools/ToneGenerator.vue +++ b/src/components/tools/ToneGenerator.vue @@ -8,10 +8,10 @@ const waveform = ref('sine') const isPlaying = ref(false) const waveforms = [ - { value: 'sine', label: 'Sine' }, - { value: 'square', label: 'Square' }, - { value: 'sawtooth', label: 'Sawtooth' }, - { value: 'triangle', label: 'Triangle' } + { value: 'sine', label: 'Sine', icon: '' }, + { value: 'square', label: 'Square', icon: '' }, + { value: 'sawtooth', label: 'Sawtooth', icon: '' }, + { value: 'triangle', label: 'Triangle', icon: '' } ] let audioContext = null @@ -169,7 +169,10 @@ onUnmounted(() => { @click="waveform = wf.value" v-ripple > - {{ wf.label }} +