Skip to content

Commit

Permalink
fix(LoginPage): typos (patternfly#988)
Browse files Browse the repository at this point in the history
* fix(LoginPage): typos

* update test snapshots
  • Loading branch information
mcoker authored and dlabaj committed Nov 30, 2018
1 parent d360a52 commit fb61a15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const propTypes = {
passwordValue: PropTypes.string,
/** Function that handles the onChange event for the Password */
onChangePassword: PropTypes.func,
/** Helper Text for the Username Input Field */
/** Helper Text for the Password Input Field */
passwordHelperText: PropTypes.string,
/** Helper Text for the Password Input Field when it is invalid */
passwordHelperTextInvalid: PropTypes.string,
Expand Down Expand Up @@ -118,7 +118,7 @@ const LoginForm = ({
isRequired
isValid={isValidUsername}
type="text"
mame="pf-login-username-id"
name="pf-login-username-id"
value={usernameValue}
onChange={onChangeUsername}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ exports[`LoginForm with rememberMeLabel and no rememberMeAriaLabel generates con
isReadOnly={false}
isRequired={true}
isValid={true}
mame="pf-login-username-id"
name="pf-login-username-id"
onChange={[Function]}
type="text"
value=""
Expand Down Expand Up @@ -153,7 +153,7 @@ exports[`LoginForm with rememberMeLabel and rememberMeAriaLabel does not generat
isReadOnly={false}
isRequired={true}
isValid={true}
mame="pf-login-username-id"
name="pf-login-username-id"
onChange={[Function]}
type="text"
value=""
Expand Down Expand Up @@ -258,7 +258,7 @@ exports[`should render Login form 1`] = `
isReadOnly={false}
isRequired={true}
isValid={true}
mame="pf-login-username-id"
name="pf-login-username-id"
onChange={[Function]}
type="text"
value=""
Expand Down

0 comments on commit fb61a15

Please sign in to comment.