After clicking "Use a different address" hitting enter should submit the "Use this instead" button

Этот коммит содержится в:
Khoa, Le Ngoc
2016-03-19 19:57:57 +07:00
родитель 3d54935842
Коммит 51ef060a36

Просмотреть файл

@@ -96,7 +96,11 @@ class TeamSignupWelcomePage extends React.Component {
}
handleKeyPress(event) {
if (event.keyCode === 13) {
this.submitNext(event);
if (this.state.useDiff) {
this.handleDiffSubmit(event);
} else {
this.submitNext(event);
}
}
}
componentWillUnmount() {