Merge pull request #813 from yuya-oc/backport-812-to-4.1

Backport #812 to release-4.1
This commit is contained in:
Yuya Ochiai 2018-05-24 00:28:04 +09:00 committed by GitHub
commit 4abf6aca38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,9 @@ export default class LoginModal extends React.Component {
type='text'
placeholder='User Name'
ref='username'
onClick={(e) => {
e.stopPropagation();
}}
/>
</Col>
</FormGroup>
@ -64,6 +67,9 @@ export default class LoginModal extends React.Component {
type='password'
placeholder='Password'
ref='password'
onClick={(e) => {
e.stopPropagation();
}}
/>
</Col>
</FormGroup>