Skip to content

Commit 94d9d20

Browse files
committed
fix: issue with voice search terminating at the middle
1 parent 6ee32fb commit 94d9d20

File tree

1 file changed

+1
-1
lines changed
  • packages/vue/src/components/search/addons

1 file changed

+1
-1
lines changed

packages/vue/src/components/search/addons/Mic.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const Mic = {
6363
}
6464
this.instance = new SpeechRecognition();
6565
this.instance.continuous = true;
66-
this.instance.interimResults = true;
66+
this.instance.interimResults = false;
6767
this.instance.lang = lang;
6868
if (getInstance) {
6969
getInstance(this.instance);

0 commit comments

Comments
 (0)