mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Update from feedback
use props for username rather than constructed form data, and `studentUsername -> username`. Thanks @rschamp!
This commit is contained in:
parent
cbf76ec636
commit
f8de61f067
2 changed files with 4 additions and 11 deletions
|
@ -226,7 +226,7 @@ module.exports = {
|
|||
ChoosePasswordStep: intl.injectIntl(React.createClass({
|
||||
getDefaultProps: function () {
|
||||
return {
|
||||
studentUsername: null,
|
||||
username: null,
|
||||
showPassword: false,
|
||||
waiting: false
|
||||
};
|
||||
|
@ -258,7 +258,7 @@ module.exports = {
|
|||
validations={{
|
||||
minLength: 6,
|
||||
notEquals: 'password',
|
||||
notEqualsUsername: this.props.studentUsername
|
||||
notEqualsUsername: this.props.username
|
||||
}}
|
||||
validationErrors={{
|
||||
minLength: formatMessage({
|
||||
|
@ -880,11 +880,7 @@ module.exports = {
|
|||
};
|
||||
},
|
||||
onNextStep: function () {
|
||||
this.props.onNextStep({
|
||||
user: {
|
||||
username: this.props.studentUsername
|
||||
}
|
||||
});
|
||||
this.props.onNextStep();
|
||||
},
|
||||
render: function () {
|
||||
var formatMessage = this.props.intl.formatMessage;
|
||||
|
|
|
@ -133,10 +133,7 @@ var StudentCompleteRegistration = intl.injectIntl(React.createClass({
|
|||
<Steps.ChoosePasswordStep onNextStep={this.advanceStep}
|
||||
showPassword={true}
|
||||
waiting={this.state.waiting}
|
||||
studentUsername={
|
||||
this.state.formData.user &&
|
||||
this.state.formData.user.username
|
||||
} />
|
||||
username={this.props.studentUsername} />
|
||||
:
|
||||
[]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue