Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class BasicLoginFormUI extends Component<Props, State> {
onChange={this.onUsernameChange}
disabled={this.state.isLoading}
isInvalid={false}
aria-required
aria-required={true}
inputRef={this.setUsernameInputRef}
/>
</EuiFormRow>
Expand All @@ -79,7 +79,7 @@ class BasicLoginFormUI extends Component<Props, State> {
onChange={this.onPasswordChange}
disabled={this.state.isLoading}
isInvalid={false}
aria-required
aria-required={true}
/>
</EuiFormRow>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class EditRolePageUI extends Component<Props, State> {
<Fragment>
<EuiSpacer size="s" />
<EuiText size="s" color="subdued">
<p id="reservedRoleDescription" tabIndex={1}>
<p id="reservedRoleDescription" tabIndex={0}>
<FormattedMessage
id="xpack.security.management.editRole.modifyingReversedRolesDescription"
defaultMessage="Reserved roles are built-in and cannot be removed or modified."
Expand Down