diff --git a/src/renderer/src/components/config/values/ValueCard.vue b/src/renderer/src/components/config/values/ValueCard.vue index 1e7a45f..cc569c7 100644 --- a/src/renderer/src/components/config/values/ValueCard.vue +++ b/src/renderer/src/components/config/values/ValueCard.vue @@ -40,6 +40,7 @@ () => { inputValue = key open = false + deviceStore.updateKnobValueParameter(valueIndex - 1, { type: key }) } " > diff --git a/src/renderer/src/deviceStore.ts b/src/renderer/src/deviceStore.ts index 852d53c..5430542 100644 --- a/src/renderer/src/deviceStore.ts +++ b/src/renderer/src/deviceStore.ts @@ -527,7 +527,6 @@ export const useDeviceStore = defineStore('device', { }, updateKnobValueParameter(index: number, updates: object, updateDevice: boolean = true) { Object.assign(this.currentProfile!.knob[index], updates) - console.log(updates) if (updateDevice) { sendDebounced( this.currentDeviceId!,