Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
Fixed password input
Browse files Browse the repository at this point in the history
  • Loading branch information
FallingSnow committed Feb 9, 2017
1 parent 70661ca commit 1738c3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Created for Arch Linux.
- Select your language
- Full i18n localization
- 4 different types of background (trianglify, image, random-image, and zodiac)
- LDAP support via lighdm's hide_users
- LDAP support via lightdm's hide_users
- HiDpi screen support via UI scaling
- And the most important thing, A CLOCK WITH SECONDS!!!

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightdm-webkit2-material2",
"version": "0.0.3",
"version": "0.0.4",
"description": "A material design theme for use with lightdm-webkit2-greeter.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -82,7 +82,7 @@
"redux-devtools-log-monitor": "^1.2.0",
"source-map-loader": "^0.1.6",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}
2 changes: 1 addition & 1 deletion src/components/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class Login extends React.Component {
</div>
<div className="form-container">
{userSelect}
<TextField id="password-input" floatingLabelStyle={this.state.passwordStyle} errorStyle={this.state.passwordStyle} underlineStyle={this.state.passwordStyle} fullWidth={true} floatingLabelText={< FormattedMessage id = "password" defaultMessage = "Password" />} type="password" value={this.state.password || ''} onChange={this.updatePasswordy} autoFocus={!lightdm.hide_users} errorText={this.state.passwordError} hintText={this.state.passwordHint}/>
<TextField id="password-input" floatingLabelStyle={this.state.passwordStyle} errorStyle={this.state.passwordStyle} underlineStyle={this.state.passwordStyle} fullWidth={true} floatingLabelText={< FormattedMessage id = "password" defaultMessage = "Password" />} type="password" value={this.state.password || ''} onChange={this.updatePassword} autoFocus={!lightdm.hide_users} errorText={this.state.passwordError} hintText={this.state.passwordHint}/>
<SelectField fullWidth={true} floatingLabelText={< FormattedMessage id = "session" defaultMessage = "Session" />} value={this.props.settings.sessionKey} onChange={this.changesessionKey}>
{sessions}
</SelectField>
Expand Down

0 comments on commit 1738c3f

Please sign in to comment.