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'
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>