Skip to content

Commit

Permalink
fix(tts): volume should be number (#2822)
Browse files Browse the repository at this point in the history
FIxes #2816
  • Loading branch information
sogehige committed Oct 21, 2019
1 parent 07db39c commit 50d35a8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/overlay/views/alertsRegistry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<div v-if="urlParam('debug')" class="debug">
<json-viewer :value="{data}" v-if="data" boxed copyable :expand-depth="2"></json-viewer>
<json-viewer :value="{runningAlert}" v-if="runningAlert" boxed copyable :expand-depth="2"></json-viewer>
<json-viewer :value="{alerts}" v-if="alerts" boxed copyable :expand-depth="2"></json-viewer>
</div>
<div v-if="runningAlert">
<audio ref="audio">
Expand Down
2 changes: 1 addition & 1 deletion src/panel/views/registries/alerts/components/tts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<b-input-group class="mb-2 mr-sm-2 mb-sm-0">
<b-form-input
id="volume"
v-model="data.volume"
v-model.number="data.volume"
type="range"
min="0"
max="1"
Expand Down

0 comments on commit 50d35a8

Please sign in to comment.