mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
voice setup tweaks
This commit is contained in:
parent
d7aaa41aa4
commit
77abfd3e61
@ -144,7 +144,7 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {
|
||||
{ option: "preferred" },
|
||||
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
||||
);
|
||||
this._nextStep(STEP.SUCCESS);
|
||||
fireEvent(this, "next-step", { step: STEP.SUCCESS, noPrevious: true });
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -210,15 +210,15 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {
|
||||
{ option: cloudPipeline.name },
|
||||
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
||||
);
|
||||
this._nextStep(STEP.SUCCESS);
|
||||
fireEvent(this, "next-step", { step: STEP.SUCCESS, noPrevious: true });
|
||||
}
|
||||
|
||||
private async _setupCloud() {
|
||||
fireEvent(this, "next-step", { step: STEP.CLOUD });
|
||||
this._nextStep(STEP.CLOUD);
|
||||
}
|
||||
|
||||
private async _thisSystem() {
|
||||
fireEvent(this, "next-step", { step: STEP.ADDONS });
|
||||
this._nextStep(STEP.ADDONS);
|
||||
}
|
||||
|
||||
private _skip() {
|
||||
|
@ -228,6 +228,7 @@ export class HaVoiceAssistantSetupStepSuccess extends LitElement {
|
||||
fireEvent(this, "next-step", {
|
||||
step: STEP.WAKEWORD,
|
||||
nextStep: STEP.SUCCESS,
|
||||
updateConfig: true,
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user