mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-25 18:26:35 +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" },
|
{ option: "preferred" },
|
||||||
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
||||||
);
|
);
|
||||||
this._nextStep(STEP.SUCCESS);
|
fireEvent(this, "next-step", { step: STEP.SUCCESS, noPrevious: true });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -210,15 +210,15 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {
|
|||||||
{ option: cloudPipeline.name },
|
{ option: cloudPipeline.name },
|
||||||
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
{ entity_id: this.assistConfiguration?.pipeline_entity_id }
|
||||||
);
|
);
|
||||||
this._nextStep(STEP.SUCCESS);
|
fireEvent(this, "next-step", { step: STEP.SUCCESS, noPrevious: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
private async _setupCloud() {
|
private async _setupCloud() {
|
||||||
fireEvent(this, "next-step", { step: STEP.CLOUD });
|
this._nextStep(STEP.CLOUD);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async _thisSystem() {
|
private async _thisSystem() {
|
||||||
fireEvent(this, "next-step", { step: STEP.ADDONS });
|
this._nextStep(STEP.ADDONS);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _skip() {
|
private _skip() {
|
||||||
|
@ -228,6 +228,7 @@ export class HaVoiceAssistantSetupStepSuccess extends LitElement {
|
|||||||
fireEvent(this, "next-step", {
|
fireEvent(this, "next-step", {
|
||||||
step: STEP.WAKEWORD,
|
step: STEP.WAKEWORD,
|
||||||
nextStep: STEP.SUCCESS,
|
nextStep: STEP.SUCCESS,
|
||||||
|
updateConfig: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user