Skip to content

Commit

Permalink
fix(site): update on select change instead of input
Browse files Browse the repository at this point in the history
fixes result updating before the selected option actually changes
  • Loading branch information
DGCK81LNN committed Nov 6, 2023
1 parent 745add8 commit bf78143
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/components/transcriber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
v-model="sourceFmt"
:options="exclude(options, targetFmt)"
:disabled="showOverlay"
@input="go()"
@change="go()"
/>
</BInputGroup>
<BButton
Expand All @@ -25,7 +25,7 @@
v-model="targetFmt"
:options="exclude(options, sourceFmt)"
:disabled="showOverlay"
@input="go()"
@change="go()"
/>
</BInputGroup>
<BInputGroup
Expand All @@ -42,7 +42,7 @@
'_',
]"
:disabled="showOverlay"
@input="go()"
@change="go()"
/>
</BInputGroup>
</BButtonToolbar>
Expand Down

0 comments on commit bf78143

Please sign in to comment.