Merge pull request #1265 from alectrocute/AA/trim-all-username-inputs

Remove whitespace from all username input fields
This commit is contained in:
SleeplessOne1917 2023-06-14 23:28:26 +00:00 committed by GitHub
commit a2855ad983
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -195,7 +195,7 @@ export class Login extends Component<any, State> {
}
handleLoginUsernameChange(i: Login, event: any) {
i.state.form.username_or_email = event.target.value;
i.state.form.username_or_email = event.target.value.trim();
i.setState(i.state);
}

View file

@ -221,7 +221,7 @@ export class Setup extends Component<any, State> {
}
handleRegisterUsernameChange(i: Setup, event: any) {
i.state.form.username = event.target.value;
i.state.form.username = event.target.value.trim();
i.setState(i.state);
}

View file

@ -496,7 +496,7 @@ export class Signup extends Component<any, State> {
}
handleRegisterUsernameChange(i: Signup, event: any) {
i.state.form.username = event.target.value;
i.state.form.username = event.target.value.trim();
i.setState(i.state);
}