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.
2 parents 6f6306c + c40d45c commit 7689c4cCopy full SHA for 7689c4c
packages/pf4-component-mapper/src/wizard/wizard.js
@@ -90,12 +90,12 @@ const WizardInternal = ({
90
return (
91
<Modal inModal={inModal} container={state.container} aria-labelledby={rest.name}>
92
<div
93
+ tabIndex={inModal ? 0 : null}
94
className={`pf-c-wizard ${inModal ? '' : 'no-shadow'} ddorg__pf4-component-mapper__wizard ${className ? className : ''}`}
95
role="dialog"
96
aria-modal={inModal ? 'true' : undefined}
97
onKeyDown={(e) => {
98
onKeyDown(e);
-
99
if (e.key === 'Escape' && inModal) {
100
formOptions.onCancel();
101
}
0 commit comments