Fix authentication dialog not working

This commit is contained in:
Yuya Ochiai
2018-05-22 23:50:45 +09:00
parent 364a6a5855
commit e3b9cc43fd

View File

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