Spaces:
Building
Building
Update flare-ui/src/app/components/environment/environment.component.html
Browse files
flare-ui/src/app/components/environment/environment.component.html
CHANGED
@@ -247,6 +247,7 @@
|
|
247 |
<!-- Checkboxes -->
|
248 |
<div class="checkbox-group">
|
249 |
<mat-checkbox
|
|
|
250 |
[(ngModel)]="sttSettings.use_enhanced"
|
251 |
[disabled]="loading"
|
252 |
*ngIf="environment.stt_engine === 'google'">
|
@@ -254,12 +255,14 @@
|
|
254 |
</mat-checkbox>
|
255 |
|
256 |
<mat-checkbox
|
|
|
257 |
[(ngModel)]="sttSettings.enable_punctuation"
|
258 |
[disabled]="loading">
|
259 |
Enable Automatic Punctuation
|
260 |
</mat-checkbox>
|
261 |
|
262 |
<mat-checkbox
|
|
|
263 |
[(ngModel)]="sttSettings.interim_results"
|
264 |
[disabled]="loading">
|
265 |
Show Interim Results
|
|
|
247 |
<!-- Checkboxes -->
|
248 |
<div class="checkbox-group">
|
249 |
<mat-checkbox
|
250 |
+
name="sttUseEnhanced"
|
251 |
[(ngModel)]="sttSettings.use_enhanced"
|
252 |
[disabled]="loading"
|
253 |
*ngIf="environment.stt_engine === 'google'">
|
|
|
255 |
</mat-checkbox>
|
256 |
|
257 |
<mat-checkbox
|
258 |
+
name="sttEnablePunctuation"
|
259 |
[(ngModel)]="sttSettings.enable_punctuation"
|
260 |
[disabled]="loading">
|
261 |
Enable Automatic Punctuation
|
262 |
</mat-checkbox>
|
263 |
|
264 |
<mat-checkbox
|
265 |
+
name="sttInterimResults"
|
266 |
[(ngModel)]="sttSettings.interim_results"
|
267 |
[disabled]="loading">
|
268 |
Show Interim Results
|