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

Commit 1738c3f

Browse files
committed
Fixed password input
1 parent 70661ca commit 1738c3f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Created for Arch Linux.
1919
- Select your language
2020
- Full i18n localization
2121
- 4 different types of background (trianglify, image, random-image, and zodiac)
22-
- LDAP support via lighdm's hide_users
22+
- LDAP support via lightdm's hide_users
2323
- HiDpi screen support via UI scaling
2424
- And the most important thing, A CLOCK WITH SECONDS!!!
2525

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lightdm-webkit2-material2",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "A material design theme for use with lightdm-webkit2-greeter.",
55
"main": "index.js",
66
"scripts": {
@@ -82,7 +82,7 @@
8282
"redux-devtools-log-monitor": "^1.2.0",
8383
"source-map-loader": "^0.1.6",
8484
"url-loader": "^0.5.7",
85-
"webpack": "^1.14.0",
86-
"webpack-dev-server": "^1.16.2"
85+
"webpack": "^2.2.1",
86+
"webpack-dev-server": "^2.3.0"
8787
}
8888
}

src/components/Login.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class Login extends React.Component {
159159
</div>
160160
<div className="form-container">
161161
{userSelect}
162-
<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}/>
162+
<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}/>
163163
<SelectField fullWidth={true} floatingLabelText={< FormattedMessage id = "session" defaultMessage = "Session" />} value={this.props.settings.sessionKey} onChange={this.changesessionKey}>
164164
{sessions}
165165
</SelectField>

0 commit comments

Comments
 (0)