We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9245c commit db1af3dCopy full SHA for db1af3d
addon/services/wizard-manager.ts
@@ -182,7 +182,7 @@ export default class WizardManager extends Service {
182
private findFirstFocusableStepInSection(sectionId: string): Step | undefined {
183
const section = this.sections.find((section: Section) => section.id === sectionId);
184
if (section) {
185
- return section.steps.find((step: Step) => step.displayState !== 'empty');
+ return section.steps.find((step: Step) => step.displayState !== 'empty' && !step.hidden);
186
}
187
return undefined;
188
0 commit comments