Define a pf4 button with tabIndex prop,
import { Button } from '@patternfly/react-core';
......
<Button tabIndex="-1">test</Button>
The tabIndex prop is missing from the rendered DOM,
<button class="pf-c-button" type="button">test</button>
Reactions are currently unavailable
Define a pf4 button with tabIndex prop,
import { Button } from '@patternfly/react-core'; ...... <Button tabIndex="-1">test</Button>The tabIndex prop is missing from the rendered DOM,