`oh-knob`: Fix `releaseOnly` not working (#1893)

Regression from #1875.

--
Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
pull/1904/head
Florian Hotze 2023-05-19 17:09:39 +02:00 committed by GitHub
parent 55c72349e8
commit 388bedf1ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
<template>
<round-slider v-bind="resolvedConfig" :value="computedValue" :style="`stroke-dasharray: ${(config.dottedPath) ? config.dottedPath : 0}`" mouseScrollAction="true" @input="onChange" />
<round-slider v-bind="resolvedConfig" :value="computedValue" :style="`stroke-dasharray: ${(config.dottedPath) ? config.dottedPath : 0}`" mouseScrollAction="true"
@input="onChange" @click.native.stop="sendCommandDebounced(value, true)" @touchend.native.stop="sendCommandDebounced(value, true)" />
</template>
<script>