After clicking "Use a different address" hitting enter should submit the "Use this instead" button
Этот коммит содержится в:
@@ -96,9 +96,13 @@ class TeamSignupWelcomePage extends React.Component {
|
|||||||
}
|
}
|
||||||
handleKeyPress(event) {
|
handleKeyPress(event) {
|
||||||
if (event.keyCode === 13) {
|
if (event.keyCode === 13) {
|
||||||
|
if (this.state.useDiff) {
|
||||||
|
this.handleDiffSubmit(event);
|
||||||
|
} else {
|
||||||
this.submitNext(event);
|
this.submitNext(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
document.removeEventListener('keyup', this.handleKeyPress, false);
|
document.removeEventListener('keyup', this.handleKeyPress, false);
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user