Fix connect form readonly casing
This commit is contained in:
parent
1406b87d77
commit
f20ca4038e
File diff suppressed because one or more lines are too long
|
@ -53,10 +53,10 @@ class Connect extends Component {
|
|||
|
||||
render() {
|
||||
const { defaults, values } = this.props;
|
||||
const { readonly, showDetails } = defaults;
|
||||
const { readOnly, showDetails } = defaults;
|
||||
let form;
|
||||
|
||||
if (readonly) {
|
||||
if (readOnly) {
|
||||
form = (
|
||||
<Form className="connect-form">
|
||||
<h1>Connect</h1>
|
||||
|
|
Loading…
Reference in New Issue