Fix update bug with work items and activities. Fix placement of item in AR view

This commit is contained in:
John Lyon-Smith
2018-05-01 09:44:23 -07:00
parent edb078b38a
commit 0dce0b5858
11 changed files with 126 additions and 89 deletions

View File

@@ -33,7 +33,6 @@ export class Login extends React.Component {
},
rememberMe: {
alwaysGet: true,
initValue: true,
isValid: true,
},
login: {
@@ -76,7 +75,10 @@ export class Login extends React.Component {
constructor(props) {
super(props)
this.state = {
binder: new FormBinder({ email: config.defaultUser }, Login.bindings),
binder: new FormBinder(
{ email: config.defaultUser, rememberMe: true },
Login.bindings
),
messageModal: null,
apiModal: null,
waitModal: null,