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