Fix typos in last commit
This commit is contained in:
@@ -43,7 +43,7 @@ export class ForgotPassword extends Component {
|
||||
e.preventDefault()
|
||||
e.stopPropagation()
|
||||
|
||||
const obj = this.state.binder.getmodifiedBindingValues()
|
||||
const obj = this.state.binder.getModifiedBindingValues()
|
||||
|
||||
this.setState({ waitModal: { message: "Requesting Reset Email" } })
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ export class Login extends Component {
|
||||
return
|
||||
}
|
||||
|
||||
let obj = this.state.binder.getmodifiedBindingValues()
|
||||
let obj = this.state.binder.getModifiedBindingValues()
|
||||
|
||||
if (obj) {
|
||||
this.setState({ waitModal: true })
|
||||
|
||||
@@ -73,7 +73,7 @@ export class ResetPassword extends Component {
|
||||
e.preventDefault()
|
||||
e.stopPropagation()
|
||||
|
||||
const obj = this.state.binder.getmodifiedBindingValues()
|
||||
const obj = this.state.binder.getModifiedBindingValues()
|
||||
const passwordToken = new URLSearchParams(
|
||||
decodeURIComponent(window.location.search)
|
||||
).get("password-token")
|
||||
|
||||
@@ -93,7 +93,7 @@ export class TeamForm extends React.Component {
|
||||
handleSubmit(e) {
|
||||
e.preventDefault()
|
||||
|
||||
let obj = this.state.binder.getmodifiedBindingValues()
|
||||
let obj = this.state.binder.getModifiedBindingValues()
|
||||
|
||||
if (obj) {
|
||||
this.props.onSave(obj)
|
||||
|
||||
@@ -128,7 +128,7 @@ export class UserForm extends React.Component {
|
||||
handleSubmit(e) {
|
||||
e.preventDefault()
|
||||
|
||||
let obj = this.state.binder.getmodifiedBindingValues()
|
||||
let obj = this.state.binder.getModifiedBindingValues()
|
||||
|
||||
if (obj) {
|
||||
this.props.onSave(obj)
|
||||
|
||||
Reference in New Issue
Block a user