updated voice and wake word models to contain what is sent from the server
parent
c823e0504a
commit
15d5ca4b39
|
@ -93,7 +93,7 @@ export class DeviceEditComponent implements OnInit {
|
|||
}
|
||||
if (this.defaults.wakeWord) {
|
||||
this.deviceForm.controls['wakeWord'].setValue(
|
||||
this.defaults.wakeWord.wakeWord
|
||||
this.defaults.wakeWord.displayName
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
export interface Voice {
|
||||
id: string;
|
||||
displayName: string;
|
||||
settingName: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
export interface WakeWord {
|
||||
id: string;
|
||||
wakeWord: string;
|
||||
displayName: string;
|
||||
settingName: string;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue