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) {
|
if (this.defaults.wakeWord) {
|
||||||
this.deviceForm.controls['wakeWord'].setValue(
|
this.deviceForm.controls['wakeWord'].setValue(
|
||||||
this.defaults.wakeWord.wakeWord
|
this.defaults.wakeWord.displayName
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
export interface Voice {
|
export interface Voice {
|
||||||
id: string;
|
id: string;
|
||||||
displayName: string;
|
displayName: string;
|
||||||
|
settingName: string;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
export interface WakeWord {
|
export interface WakeWord {
|
||||||
id: string;
|
id: string;
|
||||||
wakeWord: string;
|
displayName: string;
|
||||||
|
settingName: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue