mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
load fix
This commit is contained in:
parent
58294687f9
commit
c2ce0b9d05
@ -62,6 +62,7 @@ let Form = React.createClass({
|
|||||||
if ('getFormData' in this.props){
|
if ('getFormData' in this.props){
|
||||||
data = mergeOptionsWithDuplicates(data, this.props.getFormData());
|
data = mergeOptionsWithDuplicates(data, this.props.getFormData());
|
||||||
}
|
}
|
||||||
|
console.log(data);
|
||||||
return data;
|
return data;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -69,6 +69,19 @@ let LoanForm = React.createClass({
|
|||||||
</InputCheckbox>
|
</InputCheckbox>
|
||||||
</Property>
|
</Property>
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
return (
|
||||||
|
<Property
|
||||||
|
hidden={true}
|
||||||
|
name="terms"
|
||||||
|
className="ascribe-settings-property-collapsible-toggle"
|
||||||
|
style={{paddingBottom: 0}}>
|
||||||
|
<input
|
||||||
|
ref="input"
|
||||||
|
type="checkbox"
|
||||||
|
defaultValue={true} />
|
||||||
|
</Property>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user